0

How to remove the scientific notation for viewing [pca.explained_variance_ratio_] ? to any number of desired decimal places [resulting array with notation]

  • Does this answer your question? [How to suppress scientific notation when printing float values?](https://stackoverflow.com/questions/658763/how-to-suppress-scientific-notation-when-printing-float-values) – Robert May 23 '22 at 21:08

1 Answers1

0

Try using the following:

np.set_printoptions(suppress=True)