Spaces:
Sleeping
Sleeping
File size: 3,006 Bytes
8097001 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
import unittest
import os
class StatisticsLogTest(unittest.TestCase):
def get_log(self):
from pm4py.objects.log.importer.xes import importer
log = importer.apply(os.path.join("input_data", "roadtraffic100traces.xes"))
return log
def test_select_attributes(self):
from pm4py.statistics.attributes.log import select
log = self.get_log()
select.get_trace_attribute_values(log, "concept:name")
select.select_attributes_from_log_for_tree(log)
def test_end_activities(self):
from pm4py.statistics.end_activities.log import get
log = self.get_log()
get.get_end_activities(log)
def test_start_activities(self):
from pm4py.statistics.start_activities.log import get
log = self.get_log()
get.get_start_activities(log)
def test_case_arrival(self):
from pm4py.statistics.traces.generic.log import case_arrival
log = self.get_log()
case_arrival.get_case_arrival_avg(log)
case_arrival.get_case_dispersion_avg(log)
def test_case_statistics(self):
from pm4py.statistics.traces.generic.log import case_statistics
log = self.get_log()
case_statistics.get_kde_caseduration(log)
case_statistics.get_events(log, "N77802")
case_statistics.get_variant_statistics(log)
case_statistics.get_cases_description(log)
case_statistics.get_all_case_durations(log)
case_statistics.get_first_quartile_case_duration(log)
case_statistics.get_median_case_duration(log)
def test_variants(self):
from pm4py.statistics.variants.log import get
log = self.get_log()
get.get_variants(log)
get.get_variants_along_with_case_durations(log)
get.get_variants_from_log_trace_idx(log)
def test_batch_detection(self):
from pm4py.objects.log.importer.xes import importer
from pm4py.algo.discovery.batches.variants import log as log_batches
log = importer.apply(os.path.join("input_data", "receipt.xes"))
log_batches.apply(log)
def test_case_overlap(self):
from pm4py.statistics.overlap.cases.log import get as log_overlap
log = self.get_log()
log_overlap.apply(log)
def test_cycle_time(self):
from pm4py.statistics.traces.cycle_time.log import get as log_cycle_time
log = self.get_log()
log_cycle_time.apply(log)
def test_rework(self):
from pm4py.statistics.rework.log import get as log_rework
log = self.get_log()
log_rework.apply(log)
def test_events_distribution(self):
from pm4py.statistics.attributes.log import get as attributes_get
log = self.get_log()
attributes_get.get_events_distribution(log)
def test_msd(self):
from pm4py.algo.discovery.minimum_self_distance.variants import log as msd_log
log = self.get_log()
msd_log.apply(log)
if __name__ == "__main__":
unittest.main()
|