Libraries Flashcards
NumPy
import numpy as np
used for mathematical functions, runs on C, and used by pandas and other libraries
Pandas
import pandas as pd
used to manage data frames and series
yFinance
import yfinance as yf
to download stocks data from yahoo
datetime
import datetime
to use dates as index on a data frame and other date related functions
matplotlib
import matplotlib.pyplot as plt
%matplotlib inline
to display graphs and chart
warnings
import warnings
warnings.filter(‘ignore’)
seaborn
import seaborn as sns
sns.set()
Seaborn is a Python data visualization library based on matplotlib. It provides a high-level interface for drawing attractive and informative statistical graphics
scipy
import scipy.stats as scs
statsmodel
import statsmodels.api as sm
import statsmodels.tsa.api as smt
from statsmodels.stats.stattools import jarque_bera
prophet
scikit-learn
PyFlux
fecon236
PM-Prophet
Pandas-TA
Technical Analysis Indicators