0% found this document useful (0 votes)
2 views

Algorithm and Procedure

The document outlines a program that imports Numpy and Pandas, creates a DataFrame, loads a dataset, and displays the output. It also provides installation commands for Python, Numpy, Matplotlib, and Pandas, detailing the steps to set up the environment. Additionally, it highlights the functionalities of each library, emphasizing their importance in scientific computing and data visualization.

Uploaded by

fidhran21
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Algorithm and Procedure

The document outlines a program that imports Numpy and Pandas, creates a DataFrame, loads a dataset, and displays the output. It also provides installation commands for Python, Numpy, Matplotlib, and Pandas, detailing the steps to set up the environment. Additionally, it highlights the functionalities of each library, emphasizing their importance in scientific computing and data visualization.

Uploaded by

fidhran21
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Algorithm:

1.Start the Program.


2.Import Numpy & Pandas Packages.
3.Create a Dataframe for the list of elements.
4.Load a Dataset from an external source into a pandas dataframe
5.Display the Output.
6.Stop the Program
Installation Commands:
Step 1: Download the Python Installer binaries. Open the official Python website in
your web browser. ...
Step 2: Run the Executable Installer. Once the installer is downloaded, run the
Python installer. ...
Step 3: Add Python to environmental variables. ...
Step 4: Verify the Python Installation.
1. Numpy

NumPy stands for Numerical Python and it is a core scientific computing library
in Python. It provides efficient multi-dimensional array objects and various operations to
work with these array objects.

Package installer for Python (pip) needed to run Python on your computer.

Installation Commands:
1. Command Prompt : Py –m pip –version
2. Command Prompt :Py –m pip install numpy

2. Matplotlib
Matplotlib is a comprehensive library for creating static, animated, and interactive
visualizations in Python. Matplotlib makes easy things easy and hard things possible.

 Create publication quality plots.


 Make interactive figures that can zoom, pan, update.
 Customize visual style and layout.
 Export to many file formats.
 Embed in JupyterLab and Graphical User Interfaces.
 Use a rich array of third-party packages built on Matplotlib.

Installation Commands:

Command Prompt :Py –m pip install matplotlib

3. Pandas
pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation
tool, built on top of the Python programming language
Installation Commands:

Command Prompt: Py –m pip install Pandas

You might also like