Forum Discussion
Anonymous
7 years agoNot applicable
Python Integration Error
Hi All, I am getting the following error while using python visual. I made use of anaconda distribution for python installation. Following is the error : Error Message: Python script err...
bclrk
6 years agoAdvocate II
You may have already tried this but a pip uninstall and install of numpy and any other packages in the error could help.
AMM
6 years agoFrequent Visitor
Of course I tried reinstalling months ago, but I did it again. Seaborn still does not work maybe I should use pip on that but I persisted with some test code as I got a different error after reinstalling numpy. I didn't use any PowerBI integration but I was able to use this code:
from matplotlib import pyplot as plt
import numpy as np
def sinplot(flip = 1):
x = np.linspace(0, 14, 100)
for i in range(1, 5):
plt.plot(x, np.sin(x + i * .5) * (7 - i) * flip)
sinplot()
plt.show()To get below so thanks, but