2016

R 3.3.2 now available

October 31, 2016 | David Smith

R 3.3.2, the latest update to the R language, was released today. Binary releases for Linux and Mac are available now from your local CRAN mirror, and the Windows builds will be available shortly. As a minor update to the R 3.3 series, this update focuses mainly on fixing bugs and doesn't ... [Read more...]

ShinyProxy 0.6.0 released!

October 31, 2016 | tobias

Monday 31 October 2016 - 15:58 ShinyProxy is a novel, open source platform to deploy Shiny apps for the enterprise or larger organizations. Why is this needed? There is currently no valid open source alternative that offers this functionality. ... [Read more...]

ShinyProxy 0.6.0 released!

October 31, 2016 | Open Analytics

ShinyProxy is a novel, open source platform to deploy Shiny apps for the enterprise or larger organizations. Why is this needed? There is currently no valid open source alternative that offers this functionality. What does it offer? authentication authorization securing traffic with TLS/SSL usage statistics scalability This is free ... [Read more...]

Poster/cheatsheet for R/BioC package genomation

October 31, 2016 | altuna

We prepared a poster/cheatsheet for the bioconductor package genomation, which is a package for summary and annotation of genomic intervals. Users can visualize and quantify genomic intervals over pre-defined functional regions, such as promoters, exons, introns, etc. The genomic intervals represent regions with a defined chromosome position, which may ... [Read more...]

Fastest Way to Add New Variables to A Large Data.Frame

October 30, 2016 | statcompute

[This article was first published on S+/R – Yet Another Blog in Statistical Computing, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here) Want to share your content on R-bloggers? click here if you have a blog, or here if you don't. pkgs <- list("hflights", "doParallel", "foreach", "dplyr", "rbenchmark", "data.table") lapply(pkgs, require, character.only = T) data(hflights) benchmark(replications = 10, order = "user.self", relative = "user.self", transform = { ### THE GENERIC FUNCTION MODIFYING THE DATA.FRAME, SIMILAR TO DATA.FRAME() ### transform(hflights, wday = ifelse(DayOfWeek %in% c(6, 7), 'weekend', 'weekday'), delay = ArrDelay + DepDelay) }, within = { ### EVALUATE THE EXPRESSION WITHIN THE LOCAL ENVIRONMENT ### within(hflights, {wday = ifelse(DayOfWeek %in% c(6, 7), 'weekend', 'weekday'); delay = ArrDelay + DepDelay}) }, mutate = { ### THE SPECIFIC FUNCTION IN DPLYR PACKAGE TO ADD VARIABLES ### mutate(hflights, wday = ifelse(DayOfWeek %in% c(6, 7), 'weekend', 'weekday'), delay = ArrDelay + DepDelay) }, foreach = { ### SPLIT AND THEN COMBINE IN PARALLEL ### registerDoParallel(cores = 2) v <- c(names(hflights), 'wday', 'delay') f <- expression(ifelse(hflights$DayOfWeek %in% c(6, 7), 'weekend', 'weekday'), hflights$ArrDelay + hflights$DepDelay) df <- foreach(fn = iter(f), .combine = mutate, .init = hflights) %dopar% { [...] [Read more...]

Becoming The Intern

October 30, 2016 | Data Imaginist - R posts

I was not always this famous… And with this I mean that a year ago only my colleagues knew I did stuff in R and now I’m reaching a slightly wider audience. Some of this is definitely due to me interning for Hadley Wickham and helping prepare the ne... [Read more...]

ratio-of-uniforms [#2]

October 30, 2016 | xi'an

Following my earlier post on Kinderman’s and Monahan’s (1977) ratio-of-uniform method, I must confess I remain quite puzzled by the approach. Or rather by its consequences. When looking at the set A of (u,v)’s in R⁺×X such that 0≤u²≤ƒ(v/u), as discussed in the previous ...
[Read more...]

What is wrong with lift curves

October 30, 2016 | Allan Engelhardt

The first part of our Marketing Analytics Using R course covers campaign analysis with test- and control groups and campaign optimisation using lift curves and predicted responses. Among the many topics covered, we discuss what is wrong with lift curves. They are a standard tool in marketing to select a ... [Read more...]

The Bayesian approach to ridge regression

October 30, 2016 | [email protected]

In a previous post, we demonstrated that ridge regression (a form of regularized linear regression that attempts to shrink the beta coefficients toward zero) can be super-effective at combating overfitting and lead to a greatly more generalizable model. This approach… Continue reading → [Read more...]

Regular Expressions Exercises – Part 1

October 30, 2016 | Avi Blinder

A common task performed during data preparation or data analysis is the manipulation of strings. Regular expressions are meant to assist in such and similar tasks. A regular expression is a pattern that describes a set of strings. Regular expressions can range from simple patterns (such as finding a single ... [Read more...]

Nobel Laureates – A Closer Look At The Data

October 30, 2016 | Salvino

The ritual is now well established: since more than a century, every year on early October, the STEM small-world but also the media and many science-&-technology aficionados and enthusiasts wait for the Nobel Prizes announcement. As the 2016 round of Nobel laureates was announced a few days ago only, perhaps ... [Read more...]

Nobel Laureates – A Closer Look At The Data

October 30, 2016 | Salvino A. Salvaggio

Salvino A. Salvaggio [1] [2] ...The ritual is now well established: since more than a century every year on early October, the STEM small-world but also the media and many science-&-technology aficionados and enthusiasts wait for the Nobel Prizes announcement. As the 2016 round of Nobel laureates was announced a few days ... [Read more...]

RProtoBuf 0.4.7: Mostly harmless

October 29, 2016 | Thinking inside the box

CRAN requested a release updating any URLs for Omegahat to the (actually working) omegahat.net URL. The RProtoBuf package had this in one code comment (errr...) and on bibfile entry. Oh well -- so that caused this 0.4.7 release which arrived on CRAN today. It contains the requested change, and pretty ... [Read more...]

drat 0.1.2: Mostly harmless

October 29, 2016 | Thinking inside the box

CRAN requested a release updating any URLs for Omegahat to the (actually working) omegahat.net URL. So that caused this 0.1.2 release which arrived on CRAN yesterday. It contains the requested change along with one or two other mostly minor changes w... [Read more...]
1 31 32 33 34 35 174

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)