'''
This file is part of PM4Py (More Info: https://pm4py.fit.fraunhofer.de).
PM4Py is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
PM4Py is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PM4Py. If not, see <https://www.gnu.org/licenses/>.
'''
from pm4py.objects.ocel.obj import OCEL
from typing import Optional, Dict, Any
from enum import Enum
from pm4py.util import exec_utils
[docs]class Parameters(Enum):
OBJECT_NUM_ATTRIBUTES = "num_obj_attr"
[docs]def apply(ocel: OCEL, parameters: Optional[Dict[Any, Any]] = None):
"""
Enables the extraction of a given collection of numeric object attributes in the feature table
(specified inside the "num_obj_attr" parameter)
Parameters
----------------
ocel
OCEL
parameters
Parameters of the algorithm:
- Parameters.OBJECT_NUM_ATTRIBUTES => collection of numeric attributes to consider for feature extraction
Returns
----------------
data
Extracted feature values
feature_names
Feature names
"""
if parameters is None:
parameters = {}
data = []
feature_names = []
ordered_objects = list(ocel.objects[ocel.object_id_column])
object_num_attributes = exec_utils.get_param_value(Parameters.OBJECT_NUM_ATTRIBUTES, parameters, None)
if object_num_attributes is not None:
feature_names = feature_names + ["@@event_num_"+x for x in object_num_attributes]
attr_values = {}
for attr in object_num_attributes:
values = ocel.objects[[ocel.object_id_column, attr]].dropna(subset=[attr]).to_dict("records")
values = {x[ocel.object_id_column]: x[attr] for x in values}
attr_values[attr] = values
for obj in ordered_objects:
data.append([])
for attr in object_num_attributes:
data[-1].append(float(attr_values[attr][obj]) if obj in attr_values[attr] else 0.0)
return data, feature_names