Difference between revisions of "R"

From OnnoWiki
Jump to navigation Jump to search
 
(24 intermediate revisions by the same user not shown)
Line 5: Line 5:
 
==Referensi==
 
==Referensi==
  
 +
* https://r.analyticflow.com/en/ -- '''R Rasa Orange'''
 
* http://www.rexamples.com/
 
* http://www.rexamples.com/
 
* http://www.sthda.com/english/articles/32-r-graphics-essentials/
 
* http://www.sthda.com/english/articles/32-r-graphics-essentials/
Line 12: Line 13:
  
 
* [[R: Install di Ubuntu 18.04]]
 
* [[R: Install di Ubuntu 18.04]]
 +
* [[R: Install di Ubuntu 20.04]]
 
* [[R: Install di Ubuntu]]
 
* [[R: Install di Ubuntu]]
 
* [[R: Install java]]
 
* [[R: Install java]]
Line 69: Line 71:
  
 
===TidyText Processing===
 
===TidyText Processing===
 +
 +
Ref: https://github.com/dgrtwo/tidy-text-mining
  
 
tidy data has a specific structure:
 
tidy data has a specific structure:
Line 83: Line 87:
 
* [[R: tidytext NASA data]]
 
* [[R: tidytext NASA data]]
 
* [[R: tidytext analisa twitter]]
 
* [[R: tidytext analisa twitter]]
 
+
* [[R: tidytext: tidytext]]
 +
* [[R: tidytext: tidytext hgwells]]
 +
* [[R: tidytext: bronte]]
 +
* [[R: tidytext: compare text]]
 +
* [[R: tidytext: tweet trump]]
 +
* [[R: tidytext: sentiment analysis basic]]
 +
* [[R: tidytext: sentiment comparing the three sentiment dictionaries]]
 +
* [[R: tidytext: sentiment Most common positive and negative words]]
 +
* [[R: tidytext: sentiment wordcloud]]
 +
* [[R: tidytext: tf-idf Jane Austen novels]]
 +
* [[R: tidytext: tf-idf corpus of physics texts]]
 +
* [[R: tidytext: word-combinations Tokenizing by n-gram]]
 +
* [[R: tidytext: document-term-matrices-mining financial articles]]
 +
* [[R: tidytext: topic-modelling]]
  
 
===Bayesian===
 
===Bayesian===
Line 113: Line 130:
 
* [[R Regression: multicollinearity essentials and vif]]
 
* [[R Regression: multicollinearity essentials and vif]]
 
* [[R Regression: stepwise regression essentials]]
 
* [[R Regression: stepwise regression essentials]]
 +
* [[R Regression: penalized regression essentials ridge lasso elastic.net]]
 +
* [https://www.youtube.com/watch?v=66z_MRwtFJM YOUTUBE: Simple Linear Regression in R]
  
 
===Machine Learning===
 
===Machine Learning===
Line 118: Line 137:
 
* [[R ML: Load Dataset]]
 
* [[R ML: Load Dataset]]
 
* [[R Regression: Logistic Regression]]
 
* [[R Regression: Logistic Regression]]
 +
* [https://www.youtube.com/watch?v=C4N3_XJJ-jU YOUTUBE: Logistic Regression in R]
 +
* [https://www.youtube.com/watch?v=SeyghJ5cdm4 YOUTUBE: Machine Learning with R]
  
 
===Graphics===
 
===Graphics===
Line 124: Line 145:
 
* [[R Plot: multiple time series data]]
 
* [[R Plot: multiple time series data]]
 
* [[R Plot: ggplot2 extensions for ts objects]]
 
* [[R Plot: ggplot2 extensions for ts objects]]
 +
* [https://www.youtube.com/watch?v=SjcUlHh3UJg YOUTUBE: Introduction to Plotting in R]
 +
* [https://www.youtube.com/watch?v=Z3V4Pbxeahg YOUTUBE: How to plot multiple graphs in R]

Latest revision as of 12:50, 10 May 2020

R adalah bahasa pemrograman dan lingkungan perangkat lunak bebas untuk komputasi statistik dan grafik yang didukung oleh R Foundation for Statistical Computing. Bahasa R banyak digunakan di kalangan ahli statistik dan data miner untuk mengembangkan perangkat lunak statistik dan analisis data. Jajak pendapat, survei penambangan data dan studi basis data literatur ilmiah, menunjukkan peningkatan popularitas yang cukup besar dalam beberapa tahun terakhir. Pada Agustus 2018, R peringkat ke-18 dalam indeks TIOBE, ukuran popularitas bahasa pemrograman.

Paket GNU, source code untuk lingkungan perangkat lunak R ditulis terutama di C, Fortran dan R sendiri dan tersedia secara gratis di bawah GNU General Public License. Versi biner pre-compiled disediakan untuk berbagai sistem operasi. Meskipun R hanya menggunakan command line interface, ada beberapa antarmuka pengguna grafis, seperti RStudio, lingkungan pengembangan terintegrasi.

Referensi

Pranala Menarik

Data

R Studio

File Processing

Text Processing

Referensi

TidyText Processing

Ref: https://github.com/dgrtwo/tidy-text-mining

tidy data has a specific structure:

  • Each variable is a column
  • Each observation is a row
  • Each type of observational unit is a table

Bayesian

Time Series


Regression Analysis

Machine Learning

Graphics