# 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) # per importare in R il dataset fertility.txt www = "http://www.dmi.units.it/~borelli/dataset/fertility.txt" fertility = read.table(www, header = TRUE) attach(fertility) fertility[1:7,] # per rimuovere da R il dataset fertility.txt detach(fertility) rm(fertility)