huseinzol05 / Stock-Prediction-Models

Gathers machine learning and deep learning models for Stock forecasting including trading bots and simulations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

which-stock.ipynb

GirishKumarSharma opened this issue · comments

I just git clone and run the ipnyb and got stuck in the last input.

TypeError Traceback (most recent call last)
Input In [10], in <cell line: 1>()
----> 1 g = sns.jointplot("volatility", "returns", data=combine, kind="reg",height=7)
3 for i in range(combine.shape[0]):
4 plt.annotate(ori_name[i].replace('.csv',''), (combine.iloc[i, 1], combine.iloc[i, 0]))
``
TypeError: jointplot() got multiple values for argument 'data'

Heey!
Try to define the parameters of the function: sns.jointplot(data=combine, x='volatility', y='returns', kind='reg', height=7).

Thanks! It worked. Now testing other files.

Anything else let me know @GirishKumarSharma !