Tingting's Blog
Posts
Posts
Data manipulation in R
Aggregation library(magrittr) set.seed(1) ex_dat <- data.frame(group = rep(1:3, each = 2), y = rnorm(6), x = rnorm(6)) ex_dat ## …
2019-08-07
data-manipulation
SQL notes
Introduction Structured Query Language (SQL) is a standard computer language for relational database management and data manipulation. …
2019-07-14
data-manipulation
Scala notes III -- Classes and Objects
Classes and objects In Scala, a class is a blueprint for objects. Once you define a class, you can create objects from the class …
2019-06-25
programming
Scala notes II -- Functions
Function Syntax Scala is a functional programming language, which means that functions are first-class citizens and you can pass them …
2019-05-26
programming
Scala notes I
Data types Boolean true or false Byte 8 bit signed value Short 16 bit signed value Char 16 bit unsigned Unicode character Int 32 bit …
2019-05-18
programming
Git commands
Configuration Set up global configuration variables if you haven’t done so $ git config --global user.name …
2019-04-16
programming
sparklyr (Spark in R)
Introduction The R programming language, along with RStudio, has become one of the most popular tools for data analysis as it contains …
2019-04-10
programming
ARIMA
Introduction The ARIMA (autoregressive integrated moving average) models are also known as Box–Jenkins models. ARIMA models are applied …
2019-04-03
statistics
Structural Time-Series Models
Introduction State-space models were originally developed by control engineers, particularly for applications that require continuous …
2019-03-21
statistics
Cite
×