Difference between revisions of "R"
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
(15 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 89: | Line 91: | ||
* [[R: tidytext: bronte]] | * [[R: tidytext: bronte]] | ||
* [[R: tidytext: compare text]] | * [[R: tidytext: compare text]] | ||
+ | * [[R: tidytext: tweet trump]] | ||
* [[R: tidytext: sentiment analysis basic]] | * [[R: tidytext: sentiment analysis basic]] | ||
* [[R: tidytext: sentiment comparing the three sentiment dictionaries]] | * [[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 121: | Line 131: | ||
* [[R Regression: stepwise regression essentials]] | * [[R Regression: stepwise regression essentials]] | ||
* [[R Regression: penalized regression essentials ridge lasso elastic.net]] | * [[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 126: | 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 132: | 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
- https://r.analyticflow.com/en/ -- R Rasa Orange
- http://www.rexamples.com/
- http://www.sthda.com/english/articles/32-r-graphics-essentials/
- https://www.tidytextmining.com/
Pranala Menarik
- R: Install di Ubuntu 18.04
- R: Install di Ubuntu 20.04
- R: Install di Ubuntu
- R: Install java
- R: Menggunakan library CRAN
- R: Matematika Dasar
- R: Tipe Data - Numeric Character Logical
- R: ls dan ls.str untuk melihat daftar variable dan isinya
- R: garbage cleanup
- R: sort
Data
R Studio
- https://gist.github.com/ElToro1966/999f1c8ca51a75648dd587a3170e4335
- http://web.cs.ucla.edu/~gulzar/rstudio/basic-tutorial.html
- RStudio: Install
File Processing
- R: operasi file
- R: readtext
- R: read PDF
- R: read CSV
- R: Read File
- R: multiread file
- R: save dan load data
Text Processing
- R: Package Pendukung Text Processing
- R: twitter persiapan
- R: stopwords
- R: Text Vector
- R: tidy text dataset - tibble
- R: contoh DataframeSource
- R: wordcloud
- R: wordcloud dari dua sumber
- R: evaluasi twit
- R: bigram
- R: bigram 2
- R: trigram
- R: ngram dan frekuensi-nya
- R: term frequency tf dan inverse document frequency idf
- R: ngram word clouds
- R: spam classification
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
- R: read multi PDF ke tidytext
- R: tidytext data frame
- R: tidytext Jane Austen Book
- R: sentiments analysis
- R: tidytext RPJP BAPPENAS
- R: tidytext NASA data
- 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
- http://www.bnlearn.com/
- https://www.r-bloggers.com/text-message-classification/
- https://www.r-bloggers.com/bayesian-network-in-r-introduction/
- https://cran.r-project.org/web/packages/BayesianNetwork/vignettes/BayesianNetwork.html
- http://www.di.fc.ul.pt/~jpn/r/bayesnets/bayesnets.html
Time Series
- https://a-little-book-of-r-for-time-series.readthedocs.io
- https://www.statmethods.net/advstats/timeseries.html
- https://a-little-book-of-r-for-biomedical-statistics.readthedocs.io
- R: time series
- R: Rserve
- R: ARDUINO dengan RServe
- R: Stock Prices Prediction Using Machine Learning and Deep Learning Techniques with Python codes
Regression Analysis
- R Regression: Dataset
- R Regression: Simple Linear Regression
- R Regression: Linear Regression
- R Regression: Categorical Variables
- R Regression: multicollinearity essentials and vif
- R Regression: stepwise regression essentials
- R Regression: penalized regression essentials ridge lasso elastic.net
- YOUTUBE: Simple Linear Regression in R
Machine Learning
- R ML: Load Dataset
- R Regression: Logistic Regression
- YOUTUBE: Logistic Regression in R
- YOUTUBE: Machine Learning with R