Stéphane Thibaud
Stéphane Thibaud
Additionally - it builds fine with caching disabled and when a heavy 8 CPU machine type is used. However, I think it's strange that Kaniko caching requires more resources than...
I tried to install it on Ubuntu 20.04 in a virtual machine - and even then I get: ``` * installing to library ‘/usr/local/lib/R/site-library’ * installing *source* package ‘arules’ ......
On Ubuntu 18.04 the install just hangs (using both methods of the readme).
I think I ran into the same problem. I used the following code: ``` import pandas as pd import numpy as np from prince import FAMD famd = FAMD(n_components=3) df...
I also noticed that PCA and MCA both work well independently. Looking at the code, I think it might be related to this line -> https://github.com/MaxHalford/prince/blob/ba8a66b6575320832b118186745ecfd85c896bdc/prince/mfa.py#L98 The data is normalized...
@MaxHalford I think it does not get much more minimal than this: ``` import pandas as pd from prince import FAMD famd = FAMD(n_components=1) df = pd.DataFrame({"A": [1, 2], "B":...
This script looks promising, but I get the same error and 'setcap' does not work for me. Any ideas?