-
Hi all,
FAMD's transform raises a pandas ValueError on qualitative data. To reproduce:
`df = pd.DataFrame(data=[['i',1,'n'],['ii',2,'n'],['iii',3,'y']],
columns=['a'…
-
Hello,
when running the basic example from the github page I get the following errors:
famd = prince.FAMD(n_components=2,n_iter=3,copy=True,check_input=True,engine='auto',random_state=42)
----…
-
When I install from pip, I get v 0.7.1. When I do:
`famd = prince.FAMD(n_components=2, n_iter=3,...`
I get the AttributeError: module 'prince' has no attribute 'FAMD' error.
-
Hello!
First of all, great job on the package! :)
I'm just starting to learn about FAMD, and have been trying to do the analysis in both R and Python. Strangely, while I am getting identical res…
-
Same error that has been documented in here #56.
Tried downgrading the version to 0.7.0 through the repository that was linked in that thread. Still showing the same dimensionality error.
Here …
-
Hello.
I tried to run the same code as you and I got an error:
`ValueError: shapes (1,4) and (6,4) not aligned: 4 (dim 1) != 6 (dim 0)`
Any ideas why does this happen?
_Originally…
-
Hello,
I'd like to:
1. Build a FAMD model from a dataframe
2. Project a single record using this model
In the example below, I have a dataframe that I use to fit a model.
I then pick a single…
-
I am using the latest version of Pandas and Prince.
When I run the following example it does not work
> df = pd.DataFrame(
> {'variable_1': [4, 5, 6, 7, 11, 2, 52],
> 'variable_2': [1…
-
Hey, I was trying to run the example provided in the documentation, but I am getting the following error:
`AttributeError: 'DataFrame' object has no attribute 'to_numpy'`
Here is the code:
…
-
Hello price developers, I was looking a way to decide n_components in FAMD or MFA automatically rather than giving manual input for parameters. Usually, in PCA we select those eigenvectors that captur…