Notes.txt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # 1: Heading
  2. # 2: Data analysis with R
  3. - what is R
  4. - history of R
  5. - what is data analysis
  6. "Data analysis is the process of inspecting, cleansing, transforming, and modeling data with the goal of discovering useful information, informing conclusions, and supporting decision-making."
  7. # 3: Installing R
  8. # 4, 5: Installing R
  9. - Go to https://cran.r-project.org
  10. > Download R for Windows
  11. > base
  12. - sudo apt update && sudo apt install r-base
  13. - calling R from command-line
  14. - quit with q()
  15. - some "Hello World" examples, math
  16. # 6: Installing RStudio Desktop
  17. - go to https://posit.co
  18. > Open Source
  19. > R Studio IDE
  20. > Download R Studio Desktop
  21. - sudo snap install rstudio
  22. - Show around
  23. # 7: Running R on Posit Cloud
  24. - go to https://posit.co
  25. > Products
  26. > Cloud
  27. > Posit Cloud
  28. > Log in or Sign up
  29. - Show around
  30. # 8: Packages in R
  31. - https://cran.r-project.org/web/packages/available_packages_by_date.html
  32. # 9: The daily life of a data scientist
  33. - get dataset: package datasets, read.csv
  34. - Exploratory: summary, hist, scatter, boxplot
  35. # 10: Data visualization in R
  36. # 11, 12: getting the data
  37. - kaggle.com
  38. > datasets
  39. > Diamonds
  40. # 13: Exploratory Data Analysis in R
  41. # 14: Exploratory Data Analysis
  42. - null hyphothesis: "the initial hyphothesis is wrong"
  43. # 16, 17, 18: Data visualization in R
  44. - Examples
  45. # 19: Additional reading