hello
As you can see, i add a new column calculation in my csv file
library('dplyr')
read.csv("C:\\Users\\xx\\Documents\\INFORMATIQUE\\DATA SCIENCE\\dataset\\mtcars.csv", header=TRUE)
filter(mtcars, gear %in% '4' & carb %in% '1')
mtcars$toto <- (mtcars$gear * mtcars$carb)
when I execute the script, i would like to display only the output result (actually I have the csv file and the output both displayed - see screenshot)
I have also another question: instead using the entire path like below i would like to use a relative path
how to do please?
read.csv("C:\\Users\\xx\\Documents\\INFORMATIQUE\\DATA SCIENCE\\dataset\\mtcars.csv", header=TRUE)