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

From OnnoWiki
Jump to navigation Jump to search
Line 1: Line 1:
 
Di Shell
 
Di Shell
  
 +
sudo apt update
 
  sudo apt install libudunits2-dev libcurl4-openssl-dev libssl-dev libxml2-dev
 
  sudo apt install libudunits2-dev libcurl4-openssl-dev libssl-dev libxml2-dev
  

Revision as of 04:14, 1 November 2018

Di Shell

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

Di R

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