Difference between revisions of "R: Package Pendukung Text Processing"

From OnnoWiki
Jump to navigation Jump to search
Line 4: Line 4:
 
  install.packages("stringr")
 
  install.packages("stringr")
 
  install.packages("tidytext")
 
  install.packages("tidytext")
 +
install.packages("ggplot2")
 +
install.packages("ggplot")
  
 
  library(dplyr)
 
  library(dplyr)
Line 9: Line 11:
 
  library(stringr)        # text cleaning and regular expressions
 
  library(stringr)        # text cleaning and regular expressions
 
  library(tidytext)      # provides additional text mining functions
 
  library(tidytext)      # provides additional text mining functions
 
+
library(ggplot)
 +
library(ggplot2)
  
 
==Pranala Menarik==
 
==Pranala Menarik==
  
 
* [[R]]
 
* [[R]]

Revision as of 09:04, 31 October 2018

install.packages("dplyr")
install.packages("tidyverse")
install.packages("stringr")
install.packages("tidytext")
install.packages("ggplot2")
install.packages("ggplot")
library(dplyr)
library(tidyverse)      # data manipulation & plotting
library(stringr)        # text cleaning and regular expressions
library(tidytext)       # provides additional text mining functions
library(ggplot)
library(ggplot2)

Pranala Menarik