# per importare in R il dataset tooth.csv www = "http://www.dmi.units.it/~borelli/dataset/tooth.csv" tooth = read.csv(www, header = TRUE) attach(tooth) tooth[1:7,] # per rimuovere da R il dataset tooth.csv detach(tooth) rm(tooth)