I have a data set that i have brought over to Python, if someone could help me with what these codes may look like and i will try them with my own data. For each numeric column in your dataset, calculate the following: Mean Median Mode Standard deviation Range Interquartile Range (IQR). Hint: use numpy.percentile() function to calculate the IQR using the following syntax for a column called age: q3, q1 = np.percentile(df['age'], [75 ,25]) iqr = q3 - q1 For each non-numeric column in your dataset, write the code to perform the following: The most frequent value for a column The unique values for a column You should also consider grouping your data based on some fields and perform some meaningful statistical analysis on the different groups Using Matplotlib and Seaborn libraries, visualize your dataset using meaningful graphs including, but not limited to, bar charts, histograms, line charts, scatter plots, pie charts. Mention some insights you have drawn from the visual graphs in part 1 Note 1: your visualization should include graphs for numeric features as well as non-numeric features Note 2: include your insights in markdown cells in the same Jupyter notebook
I have a data set that i have brought over to Python, if someone could help me with what these codes may look like and i will try them with my own data. For each numeric column in your dataset, calculate the following: Mean Median Mode Standard deviation Range Interquartile Range (IQR). Hint: use numpy.percentile() function to calculate the IQR using the following syntax for a column called age: q3, q1 = np.percentile(df['age'], [75 ,25]) iqr = q3 - q1 For each non-numeric column in your dataset, write the code to perform the following: The most frequent value for a column The unique values for a column You should also consider grouping your data based on some fields and perform some meaningful statistical analysis on the different groups Using Matplotlib and Seaborn libraries, visualize your dataset using meaningful graphs including, but not limited to, bar charts, histograms, line charts, scatter plots, pie charts. Mention some insights you have drawn from the visual graphs in part 1 Note 1: your visualization should include graphs for numeric features as well as non-numeric features Note 2: include your insights in markdown cells in the same Jupyter notebook
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
I have a data set that i have brought over to Python,
if someone could help me with what these codes may look like and i will try them with my own data.
- For each numeric column in your dataset, calculate the following:
- Mean
- Median
- Mode
- Standard deviation
- Range
- Interquartile Range (IQR). Hint: use numpy.percentile() function to calculate the IQR using the following syntax for a column called age:
q3, q1 = np.percentile(df['age'], [75 ,25])
iqr = q3 - q1
- For each non-numeric column in your dataset, write the code to perform the following:
- The most frequent value for a column
- The unique values for a column
- You should also consider grouping your data based on some fields and perform some meaningful statistical analysis on the different groups
- Using Matplotlib and Seaborn libraries, visualize your dataset using meaningful graphs including, but not limited to, bar charts, histograms, line charts, scatter plots, pie charts.
- Mention some insights you have drawn from the visual graphs in part 1
Note 1: your visualization should include graphs for numeric features as well as non-numeric features
Note 2: include your insights in markdown cells in the same Jupyter notebook
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 4 steps with 7 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education