Publications by Max Haussmann
Code Along 4
Welcome Ch1 Introduction The data science project workflow Prerequisites R RStudio r packages Install the tidyverse package Running R code 1+2 ## [1] 3 Getting help Google Stackoverflow Ch2 Introduction to Data Exploration Ch3 Data Visualization Set up library(tidyverse) data mpg ## # A tibble: 234 × 11 ## manufacturer model di...
1375 sym R (1662 sym/11 pcs) 6 img
Document
Import data # excel file data <- read_excel("data/myData.xlsx") data ## # A tibble: 9,355 × 12 ## work_year job_title job_category salary_currency salary salary_in_usd ## <dbl> <chr> <chr> <chr> <dbl> <dbl> ## 1 2023 AI Architect Machine Learning… USD 305100 305100 ...
36 sym 1 img
Test publishing
Do your work here. library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ readr 2.1.5 ## ✔ forcats 1.0.0 ✔ stringr 1.5.1 ## ✔ ggplot2 3.4.4 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.3 ✔ ...
26 sym R (1626 sym/4 pcs)