You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm trying to run PCMCI with the CMIknn test but am running into a few issues. I think I might be using it incorrectly. Could someone please take a look at my code and let me know where I'm going wrong? My data consists of real, continuous time series with no missing values.
from tigramite.data_processing import DataFrame as TigramiteDataFrame
from tigramite.independence_tests.cmiknn import CMIknn
from tigramite.pcmci import PCMCI
tig_data = TigramiteDataFrame(data=df_ts.values[:, :10], var_names=df_ts.columns[:10])
cmi_knn = CMIknn(significance="shuffle_test", verbosity=2, knn=0.2)
pcmci = PCMCI(dataframe=tig_data, cond_ind_test=cmi_knn, verbosity=2)
results = pcmci.run_pcmci(tau_max=5, pc_alpha=0.05)
I see the following logging messages before the error:
Hi, I'm trying to run PCMCI with the CMIknn test but am running into a few issues. I think I might be using it incorrectly. Could someone please take a look at my code and let me know where I'm going wrong? My data consists of real, continuous time series with no missing values.
I see the following logging messages before the error:
Error trace:
The text was updated successfully, but these errors were encountered: