business-science / pytimetk

Time series easier, faster, more fun. Pytimetk.
https://business-science.github.io/pytimetk/
MIT License
696 stars 60 forks source link

Charts not showing #280

Closed Ahelsinger closed 4 months ago

Ahelsinger commented 11 months ago

I ran this code copy pasted in Pycharm but no charts were shown

https://business-science.github.io/pytimetk/tutorials/02_finance.html

`import pytimetk as tk import pandas as pd import numpy as np

stocks_df = tk.load_dataset("stocks_daily", parse_dates = ['date'])

stocks_df.glimpse()

plotly engine

stocks_df.groupby('symbol').plot_timeseries( 'date', 'adjusted', facet_ncol=2, smooth=True, smooth_frac=0.10, width=900, height=700, engine='plotly', )`

girdeux31 commented 5 months ago

Same problem here. It is not obvious how to show plots. From the documentation:

import pytimetk as tk
import pandas as pd

df = tk.load_dataset('bike_sales_sample')
df['order_date'] = pd.to_datetime(df['order_date'])

fig = df.groupby('category_1').plot_timeseries(
    date_column = 'order_date',
    value_column = 'total_price',
    smooth_frac = 0.8
)

But plot is not shown. I also tried different engines, method gives back a Figure object but no image is shown. I also tried with fig.shown() method, with no results.

mdancho84 commented 4 months ago

This seems like you just need to run fig. Here's an example:

image