13 lines
279 B
Python
13 lines
279 B
Python
|
# %%
|
||
|
# we need to create the mdm_list
|
||
|
# import the full mdm-only file
|
||
|
import pandas as pd
|
||
|
data_path = '../../data_import/exports/data_mapping_mdm.csv'
|
||
|
full_df = pd.read_csv(data_path, skipinitialspace=True)
|
||
|
mdm_list = sorted(list((set(full_df['pattern']))))
|
||
|
|
||
|
|
||
|
# %%
|
||
|
mdm_list
|
||
|
# %%
|