Samenvatting
Summary Week 3
- Vak
- Instelling
- Boek
The text is Mastering Spark with R. After installing the dplyr library, use the following code in R studio, create a scatter plot of hp v. mpg cars2 <- copy_to(sc, mtcars) cars3 <- (cars2) cars4 <- select(cars3, hp, mpg) cars5 <- sample_n(cars4, 32) cars6 <- collect(cars5) p...
[Meer zien]