Publications by vanessarnaas

Document Code Along 5 Part 2

04.10.2023

Import data flights ## # A tibble: 336,776 × 19 ## year month day dep_time sched_dep_time dep_delay arr_time sched_arr_time ## <int> <int> <int> <int> <int> <dbl> <int> <int> ## 1 2013 1 1 517 515 2 830 819 ## 2 2013 1 1 533 529 ...

715 sym Python (25520 sym/74 pcs) 4 img

Document Code Along 5

02.10.2023

Coding basics R as a calculator 1000 / 10 ## [1] 100 x <- 1000 / 10 x ## [1] 100 assignment symbol What’s in a name? Calling functions Use of TAB seq(from = 1, to = 10, by = 1) ## [1] 1 2 3 4 5 6 7 8 9 10 continuation character, + seq(from = 1, to = 10) ## [1] 1 2 3 4 5 6 7 8 9 10 Printing to screen y <- seq(from = 1, t...

172 sym Python (237 sym/10 pcs)

Document Apply to data 4

28.09.2023

Import data # excel file data <- read_excel("../00_data/MyData3.xlsx") data ## # A tibble: 1,222 × 10 ## year months state colony_n colony_max colony_lost colony_lost_pct ## <dbl> <chr> <chr> <dbl> <chr> <dbl> <dbl> ## 1 2015 January-March Alabama 7000 7000 1800 ...

376 sym 1 img

Code Along 4

26.09.2023

Welcome Ch1 Introduction The data science project workflow Prerequisites R RStudio r packages Install the tidyverse package Running R code Getting help Google Stackoverflow Ch2 Introduction to Data Exploration Ch3 Data Visualization Set up library(tidyverse) library(mapdata) data mpg ## # A tibble: 234 × 11 ## manufacturer model ...

1387 sym R (2339 sym/16 pcs) 13 img

Test Publishing

20.09.2023

library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.3 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ggplot2 3.4.3 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.2 ✔ tidyr 1.3.0 ## ...

7 sym R (1626 sym/4 pcs)

Apply to data 3

22.09.2023

...

4 sym 2 img