The document outlines various topics related to the Pandas library in Python, including definitions, data structures, and methods for creating and manipulating DataFrames and Series. It covers practical programming tasks such as importing data, performing calculations, and data transformation techniques. Additionally, it addresses functions for data analysis and manipulation, including groupby, apply, and handling duplicates.
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 ratings0% found this document useful (0 votes)
1 views
Assignment-11(Pandas)
The document outlines various topics related to the Pandas library in Python, including definitions, data structures, and methods for creating and manipulating DataFrames and Series. It covers practical programming tasks such as importing data, performing calculations, and data transformation techniques. Additionally, it addresses functions for data analysis and manipulation, including groupby, apply, and handling duplicates.
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/ 2
Topic: Pandas
1. Define the Pandas/Python pandas?
2. What are the different types of Data Structures in Pandas? 3. Explain Series and DataFrame In Pandas 4. How Can You Create An Empty DataFrame and series in Pandas? 5. How to check an empty DataFrame? 6. What Are The Most Important Features Of The Pandas Library? 7. How Will You Explain Reindexing In Pandas? 8. What are the different ways of creating DataFrame in pandas? Explain with examples. 9. Create a DataFrame using List. 10. Create a DataFrame using Numpy Functions. 11. How to convert a NumPy array to a DataFrame of a given shape? 12. Create a DataFrame using Dictionary with a list and arrays 13. How To Create A Copy Of The Series and DataFrame in Pandas? 14. How Will You Add An Index, Row, Or Column To A DataFrame In Pandas? 15. What Method Will You Use To Rename The Index Or Columns Of Pandas DataFrame? 16. How Can You Iterate Over DataFrame In Pandas? 17. How to create an array from DataFrame 18. How to create a list from DataFrame 19. How to Reset the dataframes index? 20. Write a Pandas program to count the number of rows and columns of a DataFrame 21. Write a Pandas program to add, subtract, multiple, and divide two Pandas Series 22. Write a Pandas program to import excel data into a Pandas dataframe 23. Write a Pandas program to read specific columns from a given excel file 24. Write a Pandas program to find the sum, mean, max, min value of 25. How Can A DataFrame Be Converted To An Excel File and CSV file? 26. What is Groupby Function In Pandas? Explain with example 27. What is the use of apply function in pandas? 28. How to use apply() with lambda function? 29. Explain is the use of info, describe, head, head, and tail functions 30. Write a Pandas program to check whether only a title case is present in a given column of a DataFrame. 31. What is the map Function In Pandas? 32. How will you add a column to a pandas DataFrame? 33. How will you add a column at a specific index to a pandas DataFrame? 34. How to Delete Indices, Rows, or Columns From a Pandas DataFrame? 35. How to get the items which are not common to both series A and series B? 36. How to get the minimum, 25th percentile, median, 75th, and max of a numeric series? 37. How can we sort the DataFrame? 38. How to drop duplicate rows from DataFrame? 39. How to drop duplicate columns from DataFrame? 40. Write a Pandas program to split a string of a column of a given DataFrame into multiple columns(Split Name and Surname)