Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. We have the file data.csv
  2.  
  3. 1 - Initialization
  4.  
  5. # Question 1.1 (1 point): Initialize the pandas, seaborn and matplotlib.pylot environment.
  6.  
  7. # Question 1.2 (1 point): Create a use variable named data from the data import from data.csv. It can be used for the whole project.
  8.  
  9. 2 - Web browser
  10.  
  11. Display and interpret the data in the data.csv file.
  12.  
  13. # Question 2.1 (1 point): Create a page view of the html data. You can limit your page to a few lines.
  14.  
  15. # Question 2.2 (1 point): Make an instruction to open your html web page from question 2.1 in a browser.
  16.  
  17. 3 - Variables
  18.  
  19. # Question 3 (1 point): ): Give the instruction to display the types and attributes of the created data variable in question 1.2.
  20.  
  21. 4 - Histograms
  22.  
  23. Use the distplot function to plot the histogram of the Overall value. Try to play with the parameters hist, bins and kde.
  24.  
  25. # Question 4.1 (1 point): Give two examples of quantitative data and two examples of categorical data. You can use the Overall column as a basis for example from the data.cvs file.
  26.  
  27. # Question 4.2 (1 point): Try to draw some conclusions from the histogram. What is the approximate value of the modal? Do you see any outliers? What else do you observe?
  28.  
  29. # Question 4.3 (1 point): Use pandas to obtain the mean, median, standard deviation and range of the Overall value.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement