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

From OnnoWiki
Jump to navigation Jump to search
Line 6: Line 6:
 
  install.packages("ggplot2")
 
  install.packages("ggplot2")
 
  install.packages("igraph")
 
  install.packages("igraph")
 +
install.packages("ggraph")
  
 
  library(dplyr)
 
  library(dplyr)
Line 13: Line 14:
 
  library(ggplot2)
 
  library(ggplot2)
 
  library(scales)
 
  library(scales)
 +
library(igraph)
 +
library(ggraph)
  
 
==Pranala Menarik==
 
==Pranala Menarik==
  
 
* [[R]]
 
* [[R]]

Revision as of 12:49, 31 October 2018

install.packages("dplyr")
install.packages("tidyverse")
install.packages("stringr")
install.packages("tidytext")
install.packages("ggplot2")
install.packages("igraph")
install.packages("ggraph")
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)
library(igraph)
library(ggraph)

Pranala Menarik