R Programming command to create a directory in R
R command to create a directory in R
क्या यह है:
आर एक फ्री सॉफ्टवेयर प्रोग्रामिंग भाषा है जिसका उपयोग सांख्यिकीय कंप्यूटिंग और ग्राफिक्स के क्षेत्र में किया जाता है। इस प्रोग्राम का उपयोग मुख्य रूप से सांख्यिकीविदों और डेटा विश्लेषकों द्वारा किया जाता है।Pin
In this r programming tutorial/post we are discussing on how to create a directory in r using R command.
क्यों:
Operating systems will have simpler way of creating directory however when you are working in the programming environment having the ability to use the commands for manipulating the files or tasks like this is very useful.
कैसे करें:
Step 1: If you do not know your active directory then check the same using the below r command.
गेटव्ड()
Step 2: Now create a new directory within the active directory using the below r command.
dir.create(“mytestdir“)
**replace the “mytestdir” with your actual directory name you want to create.
टिप्पणी: सुनिश्चित करें कि आप ' के बाद के कमांड का उपयोग कर रहे हैं>’ symbolR Programming command to create a directory in R text-align: center;”>R Programming command to create a directory in R
R command to create a directory in R
क्या यह है:
आर एक फ्री सॉफ्टवेयर प्रोग्रामिंग भाषा है जिसका उपयोग सांख्यिकीय कंप्यूटिंग और ग्राफिक्स के क्षेत्र में किया जाता है। इस प्रोग्राम का उपयोग मुख्य रूप से सांख्यिकीविदों और डेटा विश्लेषकों द्वारा किया जाता है।Pin
In this r programming tutorial/post we are discussing on how to create a directory in r using R command.
क्यों:
Operating systems will have simpler way of creating directory however when you are working in the programming environment having the ability to use the commands for manipulating the files or tasks like this is very useful.
कैसे करें:
Step 1: If you do not know your active directory then check the same using the below r command.
गेटव्ड()
Step 2: Now create a new directory within the active directory using the below r command.
dir.create(“mytestdir“)
**replace the “mytestdir” with your actual directory name you want to create.
टिप्पणी: सुनिश्चित करें कि आप ' के बाद के कमांड का उपयोग कर रहे हैं>' प्रतीक।