February 2020

Factoshiny: an updated version on CRAN!

February 12, 2020 | francoishusson

The newest version of R package Factoshiny (2.2) is now on CRAN! It gives a graphical user interface that allows you to implement exploratory multivariate analyses such as PCA, correspondence analysis, multiple factor analysis or clustering. This interface allows you to modify the graphs interactively, it manages missing data, it gives ...
[Read more...]

What `R` you? (R matrixes and R arrays in python)

February 11, 2020 | R on notast

Recap Previously in this series, we discovered the equivalent python data structures of the following R data structures: vectors lists In this post, we will look at translating R arrays (and matrixes) into python. 1D R array A 1D R array prints like a vector.
library(tidyverse)
library(reticulate)
py_run_string("import numpy as np")
py_run_string("import pandas as pd")
(OneD<-array(1:6))
## [1] 1 2 3 4 5 6
But it is ... [Read more...]

Using R: from plyr to purrr, part 0 out of however many

February 11, 2020 | mrtnj

This post is me thinking out loud about applying functions to vectors or lists and getting data frames back. Using R is an ongoing process of finding nice ways to throw data frames, lists and model objects around. While tidyr has arrived at a comfortable way to reshape dataframes with ... [Read more...]

Simulating football games in R using xG values

February 11, 2020 | statnamara

In this blog post I will be adapting some code from the wonderful FC R Stats, a great football statistics resource – be sure to check out their tutorial for more detail on how to compose something like this. This post focuses a lot on writing functions in R, so check ...
[Read more...]

Changes in the foreach package

February 11, 2020 | Hong Ooi

by Hong Ooi, Senior Data Scientist at Microsoft and maintainer of the foreach package This post is to announce some new and upcoming changes in the foreach package. First, foreach can now be found on GitHub! The repository is at https://github.com/RevolutionAnalytics/foreach, replacing its old home on ... [Read more...]

Upcoming webinars

February 11, 2020 | Laura Swales

We have a series of exciting webinars lined up – if you would like to join any of the below... The post Upcoming webinars appeared first on Mango Solutions. [Read more...]

Simulating data with Bayesian networks, by Daniel Oehm

February 11, 2020 | Paul van der Laken

Daniel Oehm wrote this interesting blog about how to simulate realistic data using a Bayesian network. Bayesian networks are a type of probabilistic graphical model that uses Bayesian inference for probability computations. Bayesian networks aim to model conditional dependence, and therefore causation, by representing conditional dependence by edges in a ...
[Read more...]

fuzzySim updated to 3.0 on CRAN!

February 11, 2020 | A.M. Barbosa

The newest version of R package fuzzySim (3.0) is now on CRAN! It includes new functions such as ‘favClass‘, ‘bioThreat‘ and ‘gridRecords‘; improvements to some functions, help files and examples; updated e-mail and citation information [ see citation(“fuzzySim”) ]; clarifications … Continue reading →
[Read more...]

Create your first bar chart

February 11, 2020 | Quantargo Blog

Create your first bar chart using geom_col() Fill bars with color using the fill aesthetic ggplot(___) + geom_col( mapping = aes(x = ___, y = ___, fill = ___) ) Introduction to bar charts Bar charts visualize numeric valu...
[Read more...]

Shiny: Add/Removing Modules Dynamically

February 10, 2020 | R on Thomas Roh

Introduction Shiny modules provide a great way to organize and container-ize your code for building complex Shiny applications as well as protecting namespace collisions. I highly recommend starting with the excellent documentation from Rstudio. In thi... [Read more...]
1 7 8 9 10 11 13

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)