November 2019

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...]
1 9 10 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)