An open API service indexing awesome lists of open source software.

https://github.com/mamtapanda088/dataanalaysis-warmup-

Tasks: Create a DataFrame: Convert the dictionary into a pandas DataFrame. Top and Bottom Rows: Display the top 3 bottom ,3 rows of the DataFrame. Summary Statistics: Generate summary statistics for the dataset. Gender Count: Count the occurrences of each gender. Marks Analysis: Calculate the average, maxi, and min marks. Tools Used: Python ,pandas
https://github.com/mamtapanda088/dataanalaysis-warmup-

data-analysis data-science jupyter-notebook visualization

Last synced: over 1 year ago
JSON representation

Tasks: Create a DataFrame: Convert the dictionary into a pandas DataFrame. Top and Bottom Rows: Display the top 3 bottom ,3 rows of the DataFrame. Summary Statistics: Generate summary statistics for the dataset. Gender Count: Count the occurrences of each gender. Marks Analysis: Calculate the average, maxi, and min marks. Tools Used: Python ,pandas

Awesome Lists containing this project

README

          

Explanation:
Creating the Dataset: The dictionary dict1 is defined with keys ‘Name’, ‘Marks’, and ‘Gender’.
Creating a DataFrame: The pandas DataFrame is created from the dictionary.
Top 3 Rows: The head(3) method is used to display the top 3 rows of the DataFrame.
Bottom 3 Rows: The tail(3) method is used to display the bottom 3 rows of the DataFrame.
Summary Statistics: The describe(include='all') method provides summary statistics for all columns, including count, unique values, top values, frequency, mean, standard deviation, min, max, and quartiles.
Gender Count: The value_counts() method is used to count the occurrences of each gender.
Average Marks: The mean() method calculates the average marks.
Maximum and Minimum Marks: The max() and min() methods find the highest and lowest marks, respectively.