Is it possible to import a csv file in R and have it automatically define the variable based on the filename? Can I load a csv file named "hello" into R and construct the df/var without defining it, then?
We therefore have read("filepath/hello") instead of hello=read("hello"); however, we also include a command to create and name a variable with the same name as the file name (hello in this example?).