- numpy
- pandas
- matplotlib
python tutorial on web Data_analysis
Read csv file in python using pandas
'''run
shift + enter to run the prorgram
'''
from pandas import *
from numpy import *
from matplotlib.pyplot import *
from pyodide.http import open_url
df = read_csv(open_url('https://kaloklijk.github.io/assets/telco_churn.csv'))
df.head()
read top and bottom 10 columns
'''run
shift + enter to run the prorgram
'''
from pandas import *
from numpy import *
from matplotlib.pyplot import *
from pyodide.http import open_url
df = read_csv(open_url('https://kaloklijk.github.io/assets/telco_churn.csv'))
df.head()
df.head(10)
df.tail(10)