0% found this document useful (0 votes)
7 views2 pages

Introduction to Python (1)

The document outlines various tasks related to Python programming, particularly focusing on data manipulation using pandas. It includes creating and analyzing data frames, filtering data, importing/exporting CSV files, and visualizing data with charts. Additionally, it emphasizes statistical analysis and data cleaning techniques.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views2 pages

Introduction to Python (1)

The document outlines various tasks related to Python programming, particularly focusing on data manipulation using pandas. It includes creating and analyzing data frames, filtering data, importing/exporting CSV files, and visualizing data with charts. Additionally, it emphasizes statistical analysis and data cleaning techniques.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

INDEX

 INTRODUCTION TO PYTHON
 PYTHON PROGRAMMING
l. Create a pandas series from a dictionary of values and a
ndarray.
2. Given a Series, print all the elements that are above the
75th percentile.
3. Create a Data Frame quarterly sales where each row
contains the item category, item name, and expenditure.
Group the rows by the category, and print the total
expenditure per category.
4. Create a data frame for examination result and display
row labels,column lables data types of each column and
the dimension.
5. Filter out rows based on different criteria such as
duplicate rows.
6. Importing and exporting data between pandas and CSV
files.
7. Given the school result data , analyse the performance of
the student on different parameters ,e.g.,subject wise or
class wise
8. For the data frames created above , analyse and plot
appropriate charts with title and legend.
9. Locate the 3 largest values in a data frame.
10. Create a data frame based on ecommerce data and
generate descriptive statistics (mean, median, mode,
quartile, and variance).
11. Find the sum of each column, or find the column with the
INDEX
lowest mean.
12. Subtract the mean of a row from each element of the row
in a Data Frame.
13. Replace all negative values in a data frame with a O.
14. Replace all missing values in a data frame with a 999.
15. Take data of your interest from an open source (e.g.
data.gov.in), aggregate and summarize it. Then plot it using
different plotting functions of the Matplotlib

 Bibliography

You might also like