Difference between revisions of "R: Package Pendukung Text Processing"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 11: | Line 11: | ||
library(tidytext) # provides additional text mining functions | library(tidytext) # provides additional text mining functions | ||
library(ggplot2) | library(ggplot2) | ||
+ | library(scales) | ||
==Pranala Menarik== | ==Pranala Menarik== | ||
* [[R]] | * [[R]] |
Revision as of 11:06, 31 October 2018
install.packages("dplyr") install.packages("tidyverse") install.packages("stringr") install.packages("tidytext") install.packages("ggplot2")
library(dplyr) library(tidyverse) # data manipulation & plotting library(stringr) # text cleaning and regular expressions library(tidytext) # provides additional text mining functions library(ggplot2) library(scales)