import mlpy
x = in_data.to_numpy()[0]
K = mlpy.KernelGaussian(10)
p = mlpy.PCA()
I get the error message:
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "<string>", line 5, in <module>
AttributeError: 'module' object has no attribute 'PCA'
I also tried using mlpy.pca(), mlpy.Pca() to no avail. The kernel versions don't work either.
Dona Hertel