September 2021

Introduction to Machine Learning with TensorFlow

September 29, 2021 | finnstats

The Google Brain team created TensorFlow, an open-source library. It was designed for activities that need a lot of numerical computations. TensorFlow was designed specifically for machine learning and deep learning networks. TensorFlow ran faster than python code thanks to the use of C/C++ as a backend. The post ...
[Read more...]

Decorators in R

September 29, 2021 | Pablo Rodríguez-Sánchez

Decorators have been made quite popular by Python but, did you know they also exist in R?Photo by Lenny Kuhne on UnsplashDecorators are typically used to extend the behaviour of a function in an elegant and minimally invasive way. Graphically, we can t...
[Read more...]

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...]
1 2 3 4 11

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)