0% found this document useful (0 votes)
4 views1 page

Practical Csv&Data Visualization

Uploaded by

princebagga09871
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Practical Csv&Data Visualization

Uploaded by

princebagga09871
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

CSV File Practical list

1. Write a program to create Employee.csv file from dataframe and open file using Pandas.
2. Write a program to create a duplicate file for Employee.csv containing Employee ID and Employee Name.
3. Write a program to display Employee file with new column names.
4. Write a program to display only five record from Employee.csv with specific column names.

Data Visualization Practical list


1. Write a program to plot lines with different style, colors. Also adding labels on X and Y axis, and a title to the
chart.
2. Write a python program to plot two lines with legends, Different width and colors, also set the line marker.
3. Write a program to plot a bar chart for student strength analysis for three consecutive years, comparing and
visualizing them by converting as a Pandas dataframe and plotting using multiple bars.(pg no2.27)
4. Write a code to plot a Horizontal bar chart to depict the pass percentage of students in 12 th class exams for
the year 2015 to 2018.
5. Write a code to create a histogram with the given value x.
x=[10,15,55,70,10,30,75,89,98,81] and bins=5

You might also like