Aslında python'da yeniyim.Neden Python çizgi grafiği gösteriyor: Hesabınız yok mu? plot.ly
import matplotlib.pyplot as plt
import plotly.plotly as py
# Learn about API authentication here: https://plot.ly/python/getting-started
# Find your api_key here: https://plot.ly/settings/api
x = [1,2,3,4]
y = [3,4,8,6]
plt.plot(x, 'o')
plt.plot(y)
fig = plt.gcf()
plot_url = py.plot_mpl(fig, filename='mpl-line-scatter')
Aşağıdaki mesajı gösterir ve herhangi bir çıktı vermeyin:
Aşağıdaki kodu derlemek çalışıyorum zaman. :[email protected]:~/Desktop/pythonPrograms$ python plot.py
Aw, snap! We don't have an account for ''. Want to try again? You can authenticate with your email address or username. Sign in is not case sensitive.
Don't have an account? plot.ly
Questions? [email protected]
xdg-open - opens a file or URL in the user's preferred application
Synopsis
xdg-open { file | URL }
xdg-open { --help | --manual | --version }
Use 'man xdg-open' or 'xdg-open --manual' for additional info.
[email protected]:~/Desktop/pythonPrograms$
Bunun ne olduğunu ve nasıl düzeltileceğini bilmiyorum. Yardım et.
Olası çoğaltılabilir [Çevrimiçi arsa hesabını kullanmadan arsa kullanarak] (http://stackoverflow.com/questions/37745917/using-plotly-without-online-plotly-account) – ImportanceOfBeingErnest
Daha önce hiç plotly kullanmamıştım, Sana çok yardım ederim. Kullanıcı adı ve api_key dizesi olarak sağladığınızdan emin misiniz? Bu gerçek api_key ise, herkese açık olarak paylaşmanız gerekip gerekmediğinden emin değilim. – ImportanceOfBeingErnest
Bu bilgi için teşekkürler. Hat ayarı yapmak için lütfen bana yardım eder misiniz – Textplus