Python Forum
AttributeError: module 'plotly' has no attribute 'offline'
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
AttributeError: module 'plotly' has no attribute 'offline'
#1
Hi

im a complete beginner and would greatly appreciate if you guys could help me on the below code from a tutorial. Im using Pycharm community edition.


import pandas as pd
import plotly as py
from plotly import tools
#import plotly.offline as offline
import plotly.graph_objs as go


#from plotly import tools
#import plotly.graph_objs as go

df = pd.read_csv("EURUSDhours.csv")
df.columns = ['date', 'open', 'high', 'low', 'close', 'volume']
df.date = pd.to_datetime(df.date, format='%d.%m.%Y %H:%M:%S.%f')
df = df.set_index(df.date)

df = df[['open', 'high', 'low', 'close', 'volume']]
df = df.drop_duplicates(keep=False)

trace = go.Ohlc(x=df.index,open=df.open,high=df.high,low=df.low,close=df.close,name='Currency Quote')
data = [trace]

py.offline.plot(data,filename='tutorial.html')



Error message : "AttributeError: module 'plotly' has no attribute 'offline'"
Reply


Messages In This Thread
AttributeError: module 'plotly' has no attribute 'offline' - by charlesczc - Jan-19-2018, 06:50 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  installing anaconda packages offline HulkHogansArmsArePythons 4 7,377 Feb-18-2020, 08:23 PM
Last Post: jefsummers
  AttributeError: (“module 'pandas' has no attribute 'rolling_std'” Mariana136 4 7,605 Sep-23-2019, 12:56 PM
Last Post: Mariana136
  AttributeError: module 'numpy' has no attribute 'array aapurdel 7 45,563 May-29-2019, 02:48 AM
Last Post: heiner55
  Pandas to_csv in for loop AttributeError: 'tuple' object has no attribute 'to_csv' NSearch 9 16,878 Apr-22-2019, 05:05 PM
Last Post: Yoriz
  Tensorflow offline build from source on CentOS 7 riotto 3 4,021 Mar-21-2019, 07:16 PM
Last Post: riotto
  AttributeError: 'NoneType' object has no attribute 'all' synthex 2 5,282 Mar-07-2019, 11:11 AM
Last Post: synthex
  Please help with AttributeError: 'Netz' object has no attribute 'conv' DerBerliner 2 3,780 Feb-27-2019, 06:01 PM
Last Post: DerBerliner
  AttributeError: Can't get attribute 'Individual' on <module 'deap.creator' DomClout 4 8,793 Jul-27-2018, 09:05 PM
Last Post: Vysero
  AttributeError: module 'mnist' has no attribute 'train_images' pythonbeginner 1 8,198 Jun-14-2018, 09:29 PM
Last Post: snippsat
  AttributeError: 'set' object has no attribute 'items hey_arnold 3 26,653 Apr-29-2018, 04:33 PM
Last Post: hey_arnold

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020