Difference between revisions of "R: Menggunakan library CRAN"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (Created page with "Menggunakan library, contoh (txtplot) install.packages('txtplot') library('txtplot') # menggunakan datasets yang ada di txtplot txtplot(cars[,1], cars[,2], xlab = "speed...") |
Onnowpurbo (talk | contribs) |
||
Line 6: | Line 6: | ||
# menggunakan datasets yang ada di txtplot | # menggunakan datasets yang ada di txtplot | ||
txtplot(cars[,1], cars[,2], xlab = "speed", ylab = "distance") | txtplot(cars[,1], cars[,2], xlab = "speed", ylab = "distance") | ||
+ | |||
+ | |||
+ | ==Pranala Menarik== | ||
+ | |||
+ | * [[R]] |
Revision as of 05:31, 28 October 2018
Menggunakan library, contoh (txtplot)
install.packages('txtplot') library('txtplot')
# menggunakan datasets yang ada di txtplot txtplot(cars[,1], cars[,2], xlab = "speed", ylab = "distance")