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
I could not reproduce the error. Can you demonstrate by example?
matplotlib.__version__
Out[9]: '3.10.0'
# Load pca
from pca import pca
# Initialize pca
model = pca(n_components=3)
# Load example data set
df = model.import_example(data='iris')
# Fit transform
results = model.fit_transform(df)
model.biplot(s=0, fontsize=0, labels=None)
I did find it. It is being deprecated in matplotlib in version > 3.10. So I updated the parts and this should remove the warning now.
AttributeError: module 'matplotlib.cm' has no attribute 'get_cmap' if i want to plot a biplot without the points
The error occurs on a matplotlib version >=3.9.0 after matplotlib updated their library. Can we get a dependency update on this?
The text was updated successfully, but these errors were encountered: