Eda Ex1
Eda Ex1
EX.NO: 1 To install data analysis and visualization tools like R, Python, Tableau
DATE: Public, or Power BI.
AIM
To install data analysis and visualization tools like R, Python, Tableau Public, or Power BI.
PROCEDURE
1. Python:
- Download Python:
• Visit the official Python website (https://www.python.org/downloads/)
and download the Python installer for your OS (Windows, macOS, or
Linux).
- Install Python by running the installer and making sure to check the option to add Python
to your system's PATH during installation.
(i) INSTALL NUMPY WITH PIP
NumPy (Numerical Python) is an open-source core Python library for scientific computations. It is a
general-purpose array and matrices processing package.
jupyter-lab
lOMoARcPSD|22073296
jupyter noteboo
2. Tableau Public:
- Tableau Public
• It is a web-based tool, so there's no installation required. Simply visit the
Tableau Public website (https://public.tableau.com/s/gallery) and create an
account to start using it.
3. Power BI:
- Download Power BI Desktop:
• Go to the official Power BI website (https://powerbi.microsoft.com/en-
us/desktop/) and download Power BI Desktop.
- Install Power BI Desktop by running the installer.
lOMoARcPSD|22073296
PROGRAM:1
import numpy as np
import pandas as pd
hafeez=['Hafeez',19]
aslam=['Aslam',21]
kareem=['Kareem',18]
dataframe=pd.DataFrame([hafeez,aslam,kareem],columns=['Name','Age'])
print(dataframe)
OUTPUT 1:
PROGRAM:2
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
data=pd.read_csv("CountryData.csv")
plt.hist(data)
plt.xlabel("code")
plt.ylabel("Total_personal_income")
plt.show()
OUTPUT 2:
Results
Thus, the program to install data analysis and visualization tools like R, Python, Tableau Public, or
Power BI, and their features were explored successfully.