2019

R Owl of Athena

November 2, 2019 | Dyfan Jones Brain Dump HQ

RBloggers|RBloggers-feedburner Intro: After developing the package RAthena, I stumbled quite accidentally into the R SDK for AWS paws. As RAthena utilises Python’s SDK boto3 I thought the development of another AWS Athena package couldn’t hurt. As mentioned in my previous blog the paws syntax is very similar ... [Read more...]

EnsembleML: An R package for Parallel Ensemble Modeling in R

November 2, 2019 | Nagdev

Ensemble in machine learning is being used for a while. Ensemble is a concept of training multiple machine learning models and using them for predicting using either voting or feeding the prediction result to a different machine learning model. You could also build ensemble of ensembles. So, this is pretty ...
[Read more...]

F1 Drivers Rated

November 2, 2019 | Part Time Analyst

Hello, welcome to today’s blog and in it I’m going to be developing methods to evaluate F1 drivers. Currently there is no real way to tell if an F1 driver is any good. It seems sort of arbitrary how a racing driver is decided if they are good ...
[Read more...]

binb 0.0.5: More improvements

November 2, 2019 | Thinking inside the box

The fifth release of the binb package just arrived on CRAN. binb regroups four rather nice themes for writing LaTeX Beamer presentations much more easily in (R)Markdown. As a teaser, a quick demo combining all four themes follows; documentation and e... [Read more...]

Conditional Pipes

November 1, 2019 | R | TypeThePipe

How could we apply certain functions conditionally without leaving the pipeflow? This way: df %__% { if(apply_filter == TRUE) filter(., condition) else . } %__% ... [Read more...]

AzureRMR 2.3.0 now on CRAN

November 1, 2019 | Hong Ooi

This post is to announce that the latest update to AzureRMR is now available on CRAN. Version 2.3.0 brings several changes to make life easier when managing resources in Azure. New in this version is a facility for parallelising connections to Azure, using a pool of background processes. Some operations, such ... [Read more...]

Dplyr functions with string

November 1, 2019 | R | databentobox

Let’s say we have a simple data frame as below and we want to select the female rows only. df % filter(., gender == "female")
## id gender
## 1 2 female
## 2 4 female
## 3 5 female
The filter() function in dplyr (and other similar functions from the package) use something called non-standard evaluation (NSE). In NSE, names are treated as string ... [Read more...]

Dplyr functions with string

November 1, 2019 | R | databentobox

Let’s say we have a simple data frame as below and we want to select the female rows only. df % filter(., gender == "female")
## id gender
## 1 2 female
## 2 4 female
## 3 5 female
The filter() function in dplyr (and other similar functions from the package) use something called non-standard evaluation (NSE). In NSE, names are treated as string ... [Read more...]

LongCART – Regression tree for longitudinal data

November 1, 2019 | Madan Kundu

Longitudinal changes in a population of interest are often heterogeneous and may be influenced by a combination of baseline factors. The longitudinal tree (that is, regression tree with longitudinal data) can be very helpful to identify and characterize the sub-groups with distinct longitudinal profile in a heterogenous population. This blog ... [Read more...]

Visualize urban growth

October 31, 2019 | R on Dominic Royé

The General Directorate for the Cadastre of Spain has spatial information of the all buildings except for the Basque Country and Navarra. This data set is part of the implementation of INSPIRE, the Space Information Infrastructure in Europe. More in...
[Read more...]

Selecting columns based on type

October 31, 2019 | R on Abhijit Dasgupta

The tidyverse and, in particular, dplyr, provides functions to select columns from a data frame. There are three scoped functions available: select_all, select_if and select_at. In this post, we’ll look at a particular application of select_if, i.e., capturing the names of numeric variables. A ...
[Read more...]

Geographic distance

October 31, 2019 | R on Dominic Royé

The first post of this year 2020, I will dedicate to a question that I was recently asked. The question was how to calculate the shortest distance between different points and how to know which is the closest point. When we work with spatial data in R, currently the easiest thing ...
[Read more...]

Visualize urban growth

October 31, 2019 | R on Dominic Royé

The General Directorate for the Cadastre of Spain has spatial information of the all buildings except for the Basque Country and Navarra. This data set is part of the implementation of INSPIRE, the Space Information Infrastructure in Europe. More information can be found here. We will use the links (urls) ...
[Read more...]
1 21 22 23 24 25 155

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)