R: Package Pendukung Text Processing: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
No edit summary
Onnowpurbo (talk | contribs)
No edit summary
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 05: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