How to Change Working Directory in R and RStudio

Поделиться
HTML-код
  • Опубликовано: 21 авг 2024
  • This video is about changing the working directory in R and RStudio. The working directory is a folder from where R reads files and also writes files directly in that folder. It is actually the folder where you are working. The following points are discussed in this video:
    How to know the location of the current working directory.
    The function getwd () is used to know the location of the current working directory in RStudio.
    To change the location of the current working directory, the setwd () function of R is used.
    At the end of this video, I have shown how you can load a csv file in RStudeio.
    ....................................................................................................
    Other videos on RStudio and R Progaming
    The Easiest way to Learn R Programming | Swirl Package | Learn R in R
    • The Easiest way to Lea...
    Basics of R Programming Playlist
    • Basics of R Programing
    How to Download and install RStudio
    • How to Download and in...
    How to Download and Install R Software
    • How to Download and In...
    How to Install a Package in R and RStudio | How to Uninstall a Package in R
    • How to Install a Packa...
    How to Read a csv File in R | Loading a csv File in R
    • How to Read a csv File...
    #rprogrammingforbeginners #learnigr #changingworkingdirectoryinr #rprogramming #basicsofrprogramming #loadingcsvfile

Комментарии • 14

  • @star-tn7cs
    @star-tn7cs 5 месяцев назад +1

    This video helped me so so much in my class after sitting at my computer for an hour trying to figure it out , your video was a godsend! thank you

  • @alaria75
    @alaria75 Год назад +1

    Me first time R Sikh rahi hu ...mene bahut videos dekhi leki srf aapki videos se mujhe samjh aai ....Thankyou so much God bless u

  • @nicholasvithoulkas3322
    @nicholasvithoulkas3322 5 месяцев назад +1

    IVE BEEN trying to figure out this for over five hours. im in tears rn thank you so much

  • @AnhQuocNguyen-jl1vi
    @AnhQuocNguyen-jl1vi 6 месяцев назад

    very good

  • @famin7794
    @famin7794 11 месяцев назад

    Thanks a Lot

  • @splham
    @splham 8 месяцев назад

    thanks, very clear and nice, but what is "the headers = T"?

    • @AnimalSciences
      @AnimalSciences  8 месяцев назад

      Thank you!
      If the 1st row of a dataset contains column names then we use "header = TRUE" to let R know that the 1st row is the column name.
      We can use 'T' instead of writing 'TRUE'.