Pandas Kickstart
Pandas kickstart - kickstart Pandas
Make sure to keep the below packages updated and execute the pip's on your local system.
pip install pandas==1.1.2
pip install openpyxl==3.0.5
pip install xlrd==1.2.0
pip install hypothesis
pip install jupyterlab==3.0.0b4
pip install bottleneck
pip install numexpr
pip install python-dateutil
pip install pytz
pip install NumPy
pip install setuptools
pip install pytest
pip install BeautifulSoup4==4.9.1 --use-feature=2020-resolver
side notes: https://blog.python.org/2020/07/upgrade-pip-20-2-changes-20-3.html
Execute these commands: python -m pip install --upgrade pip, pip check and finally install your package using pip install installation dependency
https://pandas.pydata.org/docs/getting_started/install.htmlimport pandas as pd
df = pd.DataFrame({
"Name": ["Braund, Mr. Owen Harris",
"Allen, Mr. William Henry",
"Bonnell, Miss. Elizabeth"],
"Age": [22, 35, 58],
"Sex": ["male", "male", "female"]}
)
df
df["Age"]
ages = pd.Series([22, 35, 58], name="Age")
ages
df["Age"].max()
ages.max()
df.describe()