abdullahcihad / Final_Task

0 stars 0 forks source link

Don't load {tidyverse} #1

Open mrismailt opened 2 years ago

mrismailt commented 2 years ago

https://github.com/abdullahcihad/Final_Task/blob/236596ea7a3a8f24e26263909e66742e4d7f2cbc/Final_Task.Rmd#L7

It's generally not good practice to load the whole tidyverse. It's better if you load the individual libraries within the tidyverse as you need them. For example, instead of library(tidyverse), you can use:

library(dplyr)
library(stringr)
library(readr)

etc.

abdullahcihad commented 2 years ago

Okey, that makes sense, I'll do in this way from now on.