Python Pandas || Data Analysis Fundamentals || Python Programming

preview_player
Показать описание
@MattMacarty
#python #pandas #dataanalysis

Please SUBSCRIBE:

***NOTE Due to changes in the Yahoo Finance API, older versions of pandas_datareader is no longer able to download data from Yahoo. You can either update your datareader:
pip install update pandas-datareader

OR install fix_yahoo_finance. See the tutorial:

Video tutorial that discusses fundamental data analysis techniques using stock price data from Amazon. Makes use of Python 3.6 and several supporting libraries including Pandas, Pandas Datareader and Matplotlib.

To install an environment similar to that used here install the Anaconda scientific platform, free download from:
Рекомендации по теме
Комментарии
Автор

A few updates since some of these got deprecated:

Use density instead of normed:
plt.hist(amzn_percent_change, edgecolor='black', density=True)


Don't use mlab. Use scypy.norm.pdf instead of normpdf.
plt.plot(a, stats.norm.pdf(a, mean, sd))

gabeblanco
Автор

module 'pandas_datareader' has no attribute 'get_data_google'
​please help, i get this error

fredrickchukwuma
Автор

Dear all
I am going to read data from excel csv
then I am actually want to see close colum.
What should I do now?
thanks for reading this comment

mindset
Автор

Another useful video. However, I have a problem creating a histogram. I get this error. ValueError: max must be larger than min in range parameter. Please note I am using a different stock example 'ebsb'

frankconte