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

From OnnoWiki
Jump to navigation Jump to search
Line 21: Line 21:
 
  install.packages("lubridate")
 
  install.packages("lubridate")
 
  install.packages("NLP")
 
  install.packages("NLP")
 +
install.packages("qdap")
 +
install.packages("stringr")
 
  install.packages("tidytext")
 
  install.packages("tidytext")
 
  install.packages("tidyverse")
 
  install.packages("tidyverse")
 
  install.packages("tm")
 
  install.packages("tm")
install.packages("stringr")
+
 
  
 
  library(dplyr)
 
  library(dplyr)
Line 32: Line 34:
 
  library(lubridate)
 
  library(lubridate)
 
  library(NLP)
 
  library(NLP)
 +
library(qdap)
 +
library(scales)
 +
library(stringr)        # text cleaning and regular expressions
 
  library(tm)
 
  library(tm)
 
  library(tidytext)      # provides additional text mining functions
 
  library(tidytext)      # provides additional text mining functions
 
  library(tidyverse)      # data manipulation & plotting
 
  library(tidyverse)      # data manipulation & plotting
library(scales)
+
 
library(stringr)        # text cleaning and regular expressions
 
  
 
==Pranala Menarik==
 
==Pranala Menarik==
  
 
* [[R]]
 
* [[R]]

Revision as of 08:26, 1 November 2018

Di Shell

sudo apt update
sudo apt install libudunits2-dev libcurl4-openssl-dev libssl-dev libxml2-dev

Download data dari

https://github.com/kwartler/text_mining/archive/master.zip
wget https://github.com/kwartler/text_mining/archive/master.zip
unzip master.zip
cd text-mining-master


Di R

install.packages("dplyr")
install.packages("ggraph")
install.packages("ggplot2")
install.packages("ggthemes")
install.packages("igraph")
install.packages("lubridate")
install.packages("NLP")
install.packages("qdap")
install.packages("stringr")
install.packages("tidytext")
install.packages("tidyverse")
install.packages("tm")


library(dplyr)
library(igraph)
library(ggraph)
library(ggplot2)
library(lubridate)
library(NLP)
library(qdap)
library(scales)
library(stringr)        # text cleaning and regular expressions
library(tm)
library(tidytext)       # provides additional text mining functions
library(tidyverse)      # data manipulation & plotting


Pranala Menarik