abdullahcihad / Final_Task

0 stars 0 forks source link

Never include install.packages() in your code #2

Open mrismailt opened 2 years ago

mrismailt commented 2 years ago

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

install.packages() should never be in your code. Only load libraries with library(), and if a user is missing package RStudio will prompt them to download the package the first time they try to run your code.

abdullahcihad commented 2 years ago

won't happen again.