How To Install Notebook and Software
How To Install Notebook and Software
INTERNSHIP STUDIO
Module 04 | Lesson 01
Introduction to Python for
Data Analytics
WWW.INTERNSHIPSTUDIO.COM
How to Configure Python in Your System
1. Jupyter notebook- web app for creating and sharing docs with live
code, equations, visuals, and text.
2. You can either install Jupyter Notebook separately or install
Anaconda, which includes Jupyter Notebook. After installation, you
can launch Jupyter Notebook by typing "jupyter notebook" in the
command line.
3. To install important functions such as NumPy, Pandas, Seaborn,
etc., that we will require later, use the `pip` command.
WWW.INTERNSHIPSTUDIO.COM
Downloading and reading your first dataset
1. Datasets are crucial for data analytics as they comprise structured
or unstructured data that enable insights, model building, informed
decision-making, and ensure reliable and accurate results.
2. You can download your first dataset from any online public
repository, such as Kaggle, UCI Machine Learning Repository, or
other sources.
3. Read a dataset into your Jupyter notebook using the `read_csv`
function and load it as a dataframe.
WWW.INTERNSHIPSTUDIO.COM
SUMMARY
You got Next
✔ this
1 How to configure Python in your session
Data Types, Variables, and
system Operators in Python
✔ 2 Installing Jupyter notebook and
other important packages
✔ 3 Downloading your first dataset
and reading it on your notebook.
WWW.INTERNSHIPSTUDIO.COM