Thank you so much for providing this helpful LINGAM package. I was looking at how to use ICA-LINAM with VAR-LINGAM. However, the code throws errors when I do so:
ICALiNGAM_model = lingam.ICALiNGAM()VARLiNGAM_model = lingam.VARLiNGAM(lags=1, lingam_model=ICALiNGAM_model)
One way to fix it is to change issubclass to isinstance.
Hi,
Thank you so much for providing this helpful LINGAM package. I was looking at how to use ICA-LINAM with VAR-LINGAM. However, the code throws errors when I do so:
ICALiNGAM_model = lingam.ICALiNGAM()
VARLiNGAM_model = lingam.VARLiNGAM(lags=1, lingam_model=ICALiNGAM_model)
One way to fix it is to changeissubclass
toisinstance
.Thank you very much.