August 2018

Transformers, glue!

August 20, 2018 | QuestionFlow

General description of transformers functionality in {glue} with some potentially useful examples. Prologue Package {glue} is designed as “small, fast, dependency free” tools to “glue strings to data in R”. To put simply, it provides concise and flexible alternatives for paste() with some additional features:
library(glue)

x <- 10
paste("I have", x, "apples.")
## [1] "I have 10 apples."
glue("I have {x} apples.")
## I have 10 apples.
Recently, fate lead me ... [Read more...]

shinyFeedback 0.1.0 on CRAN

August 20, 2018 | Posts on Tychobra

Version 0.1.0 of the shinyFeedback package is now available on CRAN. You can install the latest version by running:
install.packages("shinyFeedback")
The shinyFeedback package makes it easy to display useful feedback notifications in Shiny apps. Since the initial shinyFeedback CRAN release, it has been able to display short messages, icons, and color ...
[Read more...]

Introduction to recommender systems

August 20, 2018 | Julian Ferry

Why build a recommender system? The most wonderful and most frustrating characteristic of the Internet is its excessive supply of content. As a result, many of today’s commercial giants are not content providers, but content distributors. The success of companies such as Amazon, Netflix, YouTube and Spotify relies on ...
[Read more...]

Harvesting Data From the Web With Rvest: Exercises

August 20, 2018 | Yanir Mor

The rvest package allows for simple and convenient extraction of data from the web into R, which is often called “web scraping.” Web scraping is a basic and important skill that every data analyst should master. You’ll often see it as a job requirement. In the following exercises, you ...
[Read more...]

Clustered Covariances in sandwich 2.5-0

August 19, 2018 | Achim Zeileis

Version 2.5-0 of the R package 'sandwich' is available from CRAN now with enhanced object-oriented clustered covariances (for lm, glm, survreg, polr, hurdle, zeroinfl, betareg, ...). The software and corresponding vignette have been improved ...
[Read more...]

Ordered Probit Model and Price Movements of High-Frequency Trades

August 19, 2018 | statcompute

The analysis of high frequency stock transactions has played an important role in the algorithmic trading and the result can be used to monitor stock movements and to develop trading strategies. In the paper “An Ordered Probit Analysis of Transaction Stock Prices” (1992), Hausman, Lo, and MacKinlay discussed estimating trade-by-trade stock ...
[Read more...]

More Practical Data Science with R Book News

August 19, 2018 | John Mount

Some more Practical Data Science with R news. Practical Data Science with R is the book we wish we had when we started in data science. Practical Data Science with R, Second Edition is the revision of that book with the packages we wish had been available at that time (... [Read more...]

R:case4base – code profiling with base R

August 18, 2018 | Jozef's Rblog

Introduction In this summertime post in the case4base series, we will look at useful tools in base R, which let us profile our code without any extra packages needed to be installed. We will cover simple and easy to use speed profiling, more complex profiling of performance and memory ... [Read more...]

R:case4base – code profiling with base R

August 18, 2018 | Jozef's Rblog

Introduction In this summertime post in the case4base series, we will look at useful tools in base R, which let us profile our code without any extra packages needed to be installed. We will cover simple and easy to use speed profiling, more complex profiling of performance and memory ... [Read more...]

approximative Laplace

August 17, 2018 | xi'an

I came across this question on X validated that wondered about one of our examples in Monte Carlo Statistical Methods. We have included a section on Laplace approximations in the Monte Carlo integration chapter, with a bit of reluctance on my side as this type of integral approximation does not ...
[Read more...]

Topics and Categories in the Russian Troll Tweets

August 17, 2018 |

Topics and Categories in the Russian Troll Tweets I decided to return to the analysis I conducted for the IRA tweets dataset. (You can read up on that analysis and R code here.) Specifically, I returned to the LDA results, which looked like they lined up pretty well with the ...
[Read more...]
1 4 5 6 7 8 14

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)