2021

Principal Component Analysis (PCA) using R

September 28, 2021 | Statistical Aid

PCA means Principal Component Analysis. PCA is a multivariate technique that is used to reduce the dimension of a data set. More precisely, PCA is concerned with explaining the variance-covariance structure through a few linear combinations of the original variables.… The post Principal Component Analysis (PCA) using R appeared first ...
[Read more...]

R for Loop

September 28, 2021 | udayan

In programming, loops are used to repeat the execution of a block of code. Loops help you to save time, avoid repeatable blocks of code, and write cleaner code. In R, there are three types of loops: while loops for loops repeat loops R for L... [Read more...]

R while Loop

September 28, 2021 | udayan

In programming, loops are used to repeat a block of code as long as the specified condition is satisfied. Loops help you to save time, avoid repeatable blocks of code, and write cleaner code. In R, there are three types of loops: while loops fo... [Read more...]

Error in as.Date.numeric(13131) : ‘origin’ must be supplied

September 28, 2021 | finnstats

Error in as.Date.numeric(13131) : ‘origin’ must be supplied, This article will show you how to handle the error message in as. Date.numeric(X). Approach 1: Error in as.Date.numeric(13131) : ‘origin’ must be supplied This example... The post Error in as.Date.numeric(13131) : ‘origin’ must be supplied appeared first ... [Read more...]

calmcode.io > video tutorials for open source tools

September 28, 2021 | Paul van der Laken

calmcode.io is an e-learning platform that I really really really recommend to programmers and data scientists: It is free. It involves open source tools. It uses bite-sized tutorial videos. It explains tools clearly. It explains everything calmly. There’s tons of content about computer programming, data science, and personal ...
[Read more...]

Quantargo Workspace Now Out of Beta

September 28, 2021 | Quantargo Blog

Quantargo Workspace Now Out of Beta We’re thrilled to announce that Quantargo Workspace is now out of Beta and generally available! Quantargo Workspace lets you easily create and manage data science projects using R and Python, with advanced features ...
[Read more...]

R ifelse() Function

September 27, 2021 | udayan

In R, the ifelse() function is a shorthand vectorized alternative to the standard if...else statement. Most of the functions in R take a vector as input and return a vectorized output. Similarly, the vector equivalent of the traditional if...else b... [Read more...]

R if…else

September 27, 2021 | udayan

R if Statement The if statement is a conditional statement that allows you to provide conditions to execute a piece of code. The syntax of if statement in R is: if(test_expression) { # body of if statement } If the test_expression inside the i... [Read more...]

R Numbers

September 27, 2021 | udayan

Numbers in R can be divided into 3 different categories: Numeric: It represents both whole and floating-point numbers. For example, 123, 32.43, etc. Integer: It represents only whole numbers and is denoted by L. For example, 23L, 39L, etc. Compl... [Read more...]

Teaching stats and programming

September 27, 2021 | R-post on Cosima Meyer

I am thrilled to share that my article “Bringing the World to the Classroom: Teaching Statistics and Programming in a Project-Based Setting” is published in PS: Political Science and Politics as an open-access article. I set up and tested t... [Read more...]

Teaching stats and programming

September 27, 2021 | R-post | Cosima Meyer

I am thrilled to share that my article “Bringing the World to the Classroom: Teaching Statistics and Programming in a Project-Based Setting” is published in PS: Political Science and Politics as an open-access article. I set up and tested ...
[Read more...]

Understanding the Parquet file format

September 27, 2021 | The Jumping Rivers Blog

Apache Parquet is a popular column storage file format used by Hadoop systems, such as Pig, Spark, and Hive. The file format is language independent and has a binary representation. Parquet is used to efficiently store large data sets and has the extension .parquet. This blog post aims to understand ...
[Read more...]

1 / duh?!

September 27, 2021 | xi'an

An interesting case on X validated of someone puzzled by the simulation (and variance) of the random variable 1/X when being able to simulate X. And being surprised at the variance of the ratio being way larger than the variances of both numerator and ...
[Read more...]

Best Practices for Durable R Code

September 27, 2021 | Appsilon

Whether you’re just starting your journey to developing a successful app or riding a wave of adoption, it’s a good idea to build durable R code. Projects that are built with durable code are built to adapt.  Having well-thought-out coding practices in place doesn’t prevent the challenges ...
[Read more...]
1 27 28 29 30 31 119

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)