www.r-bloggers.com Open in urlscan Pro
172.64.96.38  Public Scan

Submitted URL: http://r-bloggers.com/
Effective URL: https://www.r-bloggers.com/
Submission Tags: tranco_l324
Submission: On November 02 via api from DE — Scanned from DE

Form analysis 2 forms found in the DOM

https://www.google.com/cse

<form id="searchform" action="https://www.google.com/cse" target="_blank">
  <div>
    <input type="hidden" name="cx" value="005359090438081006639:paz69t-s8ua">
    <input type="hidden" name="ie" value="UTF-8">
    <input type="text" value="" name="q" id="q" autocomplete="on" style="font-size:16px;" placeholder="Search R-bloggers..">
    <input type="submit" id="searchsubmit2" name="sa" value="Go" style="font-size:16px;">
  </div>
</form>

POST https://r-bloggers.com/phplist/?p=subscribe&id=1

<form style="width:202px; float:left;" action="https://r-bloggers.com/phplist/?p=subscribe&amp;id=1" method="post" target="popupwindow">
  <input type="text" style="width:110px" onclick="if (!window.__cfRLUnblockHandlers) return false; if (this.value == 'Your e-mail here') this.value = '';" value="Your e-mail here" name="email">
  <input type="hidden" value="RBloggers" name="uri"><input type="hidden" name="loc" value="en_US"><input type="submit" value="Subscribe">
</form>

Text Content

MENU
 * Home
 * About
 * RSS
 * add your blog!
 * Learn R
 * R jobs ►
   * Submit a new job (it’s free)
   * Browse latest jobs (also free)
 * Contact us


R-BLOGGERS


R NEWS AND TUTORIALS CONTRIBUTED BY HUNDREDS OF R BLOGGERS

 * Home
 * About
 * RSS
 * add your blog!
 * Learn R
 * R jobs
   * Submit a new job (it’s free)
   * Browse latest jobs (also free)
 * Contact us


HOW THE “CLUSTERBUSTER” SHINY APP HELPS HUNDREDS OF DOCTORS AND EPIDEMIOLOGISTS
BATTLE COVID-19 IN THE NETHERLANDS

November 1, 2021 | Isabella Velásquez

As 2020 closed, Eveline Geubbels, former COVID-19 Surveillance Coordinator at
the Dutch National Institute for Public Health and the Environment (RIVM), faced
an important question: How can we help the public health doctors and
epidemiologists that work within the 25 Dutch regional health services gain
insight into clusters of COVID-19 cases? Now ...


[Read more...]


LAMBDA.MIN, LAMBDA.1SE AND CROSS VALIDATION IN LASSO : CONTINUOUS RESPONSE

November 1, 2021 | sang-heon lee

This post presents a R code for a k-fold cross validation of Lasso in the case
of a gaussian regression (continuous Y). This work easily can be done by using a
mean squared error. Cross Validation in Lasso : Gaussian Regression We have
implem...


[Read more...]


LITTLE USELESS-USEFUL R FUNCTIONS – INTERACTIVE VORONOI DIAGRAM GENERATOR USING
R AND X11()

October 31, 2021 | tomaztsql

Yes. Finally, the Voronoi diagrams with the use of x11() function. This diagram
is presentation of a plane that is partitioned every time, a user clicks on the
canvas of x11. This plane is partitioned into smaller regions that are…Read more
›


[Read more...]


SCHEDULING RMARKDOWN FILES ON WINDOWS – YOUR FOOLPROOF GUIDE

October 31, 2021 | HighlandR

You’ve written a great rmarkdown file, and now you want to run it at a set time
every day. You’ve tried the Windows Task Scheduler, you’ve pointed it at your
markdown file, and you’ve gone off to make some coffee safe in the knowledge
that yo...


[Read more...]


SCHEDULING RMARKDOWN FILES ON WINDOWS – YOUR FOOLPROOF GUIDE

October 31, 2021 | John MacKintosh

You’ve written a great rmarkdown file, and now you want to run it at a set time
every day. You’ve tried the Windows Task Scheduler, you’ve pointed it at your
markdown file, and you’ve gone off to make some coffee safe in the knowledge
that your ...


[Read more...]


{EXCLUSIONTABLE} A PACKAGE FOR KEEPING TRACK OF EXCLUSIONS AND INCLUSIONS

October 31, 2021 | R | Joshua Entrop

In today’s blog post we will take a look at a package that allows you to keep
track of the number of observations that you in- or exclude from your dataset or
study population. In epidemiological studies we often want to limit our study
population based on some inclusion ... [Read more...]


SMOOTH FLOW MAPS AND A NEW EDGE BUNDLING ALGORITHM

October 31, 2021 | schochastics

This post introduces new features of edgebundle, an R package that implements
several edge bundling/flow and metro map algorithms. In this post, I will
introduce edge-path bundling (paper) and smooth flow maps. Given that edge
bundling is mostly u... [Read more...]


{BINANCE} SPOT TRADING: MARKET ORDERS

October 31, 2021 | R - datawookie

Functionality for working with spot trades is now available in {binance}. In
this post we’ll establish some background on spot trading and then explore some
of the spot trading functions in {binance}. Setup First we’ll load the package.
library(binance) packageVersion("binance") [1] ‘0.0.3’ We’ll be using the
Binance ...


[Read more...]


DATA SCIENCE ON BLOCKCHAIN WITH R. PART II: TRACKING THE NFTS

October 31, 2021 | Thomas de Marchin

A story about nodes and verticesExamples of Weird Whale NFTs. These NFTs (token
ids 525, 564, 618, 645, 816, 1109, 1523 and 2968) belong to the creator of the
collection Benyamin Ahmed (Benoni) who gave us the permission to show them in
this article.By...


[Read more...]


CROSS VALIDATION IN R WITH EXAMPLE

October 31, 2021 | finnstats

What Does Cross-Validation Mean? Cross-validation is a statistical approach for
determining how well the results of a statistical investigation generalize to a
different data set. Cross-validation is commonly employed in situations where
the goal... The post Cross Validation in R with Example appeared first on
finnstats. [Read more...]


FAST AND SCALABLE FORECASTING WITH AHEAD::RIDGE2F

October 30, 2021 | T. Moudiki

Fast and scalable multivariate time series forecasting with ahead::ridge2f.


[Read more...]


LAMBDA.MIN, LAMBDA.1SE AND CROSS VALIDATION IN LASSO : BINOMIAL RESPONSE

October 30, 2021 | sang-heon lee

This post explains more details regarding cross validation of Lasso in the case
of a binomial response. We implement a R code for a lasso model's cross
validation. In addition, We calculate lambda.min and lambda.1se manually.
Finally we compare thes...


[Read more...]


REGRESSION IN R-ULTIMATE GUIDE

October 30, 2021 | finnstats

Regression in R, In a recent article, we discussed model fitting and selection.
However, we haven’t considered how we’ll choose which variables to include in
our model. Simple Linear Regression in r » Guide... The post Regression in
R-Ultimate Guide appeared first on finnstats. [Read more...]


THE POLARIZATION OF DEATH

October 30, 2021 | R on kieranhealy.org

I’m continuing to update the covdata package in anticipation of a Data
Visualization for Social Science course I’ll teach next semester. I revisited
the Partisan Trajectories graph, as it seems there’s more that could be done
with it.... [Read more...]


IMPORTANCE OF STATISTICAL ANALYSIS IN BUSINESS

October 29, 2021 | finnstats

Statistical Analysis in Business, Businesses cannot survive without consumer
spending. Statistical analysis can help businesses identify trends among
consumers so they can better meet their needs. It is no secret that statistical
analysis is... The post Importance of Statistical Analysis in Business appeared
first on finnstats. [Read more...]


‘BRING A SHINY APP TO PRODUCTION’ THE HANDS-ON WORKSHOP

October 29, 2021 | Mirai Solutions

Learn how to control and automate your, collaborative and agile deployment to
production. Continuous Integration (CI) and Continuous Deployment (CD) stand at
the basis of a robust, maintainable and collaborative productive code. Using a
shiny applic...


[Read more...]


INTERPRETABLE SEGMENTATION OF MEDICAL FREE-TEXT RECORDS BASED ON WORD EMBEDDINGS

October 29, 2021 | Adam Gabriel Dobrakowski

Is it possible to derive useful and interpretable information from short
doctors’ notes written during visits of patients? In our recently published
paper, we propose a methodology based on Natural Language Processing tools to
automatically process the...


[Read more...]


EXCLUSIVE LASSO AND GROUP LASSO USING R CODE

October 28, 2021 | sang-heon lee

This post shows how to use the R packages for estimating an exclusive lasso and
a group lasso. These lasso variants have a given grouping order in common but
differ in how this grouping constraint is functioning when a variable selection
is performe...


[Read more...]


ANNOUNCING RSTUDIO ON AMAZON SAGEMAKER

October 28, 2021 | Lou Bajuk

Data Science in the Cloud As more organizations migrate their data science work
to the cloud, they naturally want to bring along their favorite data science
tools, including RStudio, R, and Python. These organizations are embracing the
cloud to achieve various goals, including to: Simplify and reduce startup costs
Promote ...


[Read more...]


AWESOME MARKER LEGENDS IN LEAFLET

October 28, 2021 | R on Thomas Roh

The awesome-markers plugin that ships with the leaflet package provides a great
way to add iconography to points on a map. Three different icon libraries are
supported, you have the ability to change to a few different options for the
marker colors: , and can specify the icon color (it’s ...


[Read more...]
1 2 3 … 1,870 »




MOST VIEWED POSTS (WEEKLY)

 * September 2021: "Top 40" New CRAN Packages
 * How to Start a Career as an R Shiny Developer
 * PCA vs Autoencoders for Dimensionality Reduction
 * Data Science on Blockchain with R. Part II: Tracking the NFTs
 * 5 Ways to Subset a Data Frame in R
 * Cross Validation in R with Example
 * Git: Moving from Master to Main

SPONSORS




--------------------------------------------------------------------------------


--------------------------------------------------------------------------------


--------------------------------------------------------------------------------


--------------------------------------------------------------------------------


--------------------------------------------------------------------------------

--------------------------------------------------------------------------------


--------------------------------------------------------------------------------


--------------------------------------------------------------------------------


--------------------------------------------------------------------------------


--------------------------------------------------------------------------------


--------------------------------------------------------------------------------


--------------------------------------------------------------------------------

Our ads respect your privacy. Read our Privacy Policy page to learn more.


--------------------------------------------------------------------------------

Contact us if you wish to help support R-bloggers, and place your banner here.

JOBS FOR R-USERS

 * Junior Data Scientist / Quantitative economist
 * Senior Quantitative Analyst
 * R programmer
 * Data Scientist – CGIAR Excellence in Agronomy (Ref No:
   DDG-R4D/DS/1/CG/EA/06/20)
 * Data Analytics Auditor, Future of Audit Lead @ London or Newcastle

PYTHON-BLOGGERS.COM (PYTHON/DATA-SCIENCE NEWS)

 * A Complete Guide of How to Choose and Apply the Right Statistical Test in
   Python
 * 2020 Training Review
 * Personal Highlights of Scikit-Learn 1.0
 * RvsPython #6: LinkedIn has spoken!
 * CNN for Image Classification: Does the Neural Network Really See The Seeds?
 * How to Generate the Requirements of your Python project based on your Imports
 * Data Algebra 0.9.0 Release

CONTRIBUTING BLOGS

 * R on francojc ⟲
 * Longhow Lam’s Blog » R
 * Thinking inside the box (computers)
 * R – Eran Raviv
 * Shirin’s playgRound
 * Life in Code
 * R | JLaw’s R Blog
 * Angel Sevilla Camins’ Blog
 * Last Resort Software
 * F# and Data Mining
 * Peter Solymos – R related posts
 * Simon Grund [R]
 * Topics in R
 * Jonathan Chang
 * Wenyao
 * Paul Oldham’s Analytics Blog
 * R Programming – Data Science Blog | AI, ML, big data analytics
 * R on B. Ogan Mancarci
 * Jason Timm
 * R Analytics
 * Statistical Science & Related Matters on Less Likely
 * OpenCPU
 * Once Upon a Data
 * r-bloggers – STATWORX
 * Data Analysis Africa
 * Ensemble Blogging
 * R – Myscape
 * R Video tutorial for Spatial Statistics
 * Nicebread » R
 * sandsynligvis.dk
 * rstats | Emily Riederer
 * The power of R
 * rstats-tips.net
 * R-bloggers on Guy Abel
 * Ivan Kuznetsov » R
 * Learning Slowly » R
 * R on technistema
 * R | Robrecht Cannoodt
 * Method Matters
 * R on carl b frederick
 * Dekuran Codes
 * Murray’s Journal
 * R on YIHAN WU
 * rbloggers – Jared Lander
 * r.iresmi.net
 * Taiyun Wei
 * GivenTheData
 * R on Know Your Data
 * Analysis with Programming
 * [R] tricks

Full list of contributing R-bloggers

ARCHIVES

Archives Select Month November 2021  (2) October 2021  (177) September 2021
 (198) August 2021  (149) July 2021  (168) June 2021  (195) May 2021  (196)
April 2021  (183) March 2021  (219) February 2021  (223) January 2021  (249)
December 2020  (288) November 2020  (261) October 2020  (273) September 2020
 (246) August 2020  (220) July 2020  (260) June 2020  (229) May 2020  (328)
April 2020  (328) March 2020  (282) February 2020  (262) January 2020  (254)
December 2019  (246) November 2019  (219) October 2019  (233) September 2019
 (233) August 2019  (273) July 2019  (260) June 2019  (245) May 2019  (277)
April 2019  (293) March 2019  (308) February 2019  (262) January 2019  (287)
December 2018  (257) November 2018  (289) October 2018  (308) September 2018
 (291) August 2018  (270) July 2018  (333) June 2018  (298) May 2018  (321)
April 2018  (301) March 2018  (291) February 2018  (241) January 2018  (330)
December 2017  (261) November 2017  (270) October 2017  (290) September 2017
 (294) August 2017  (340) July 2017  (283) June 2017  (317) May 2017  (349)
April 2017  (324) March 2017  (365) February 2017  (317) January 2017  (367)
December 2016  (347) November 2016  (294) October 2016  (306) September 2016
 (254) August 2016  (287) July 2016  (327) June 2016  (263) May 2016  (292)
April 2016  (260) March 2016  (302) February 2016  (268) January 2016  (337)
December 2015  (304) November 2015  (234) October 2015  (259) September 2015
 (238) August 2015  (264) July 2015  (243) June 2015  (213) May 2015  (235)
April 2015  (211) March 2015  (259) February 2015  (212) January 2015  (245)
December 2014  (236) November 2014  (221) October 2014  (218) September 2014
 (259) August 2014  (217) July 2014  (235) June 2014  (241) May 2014  (243)
April 2014  (260) March 2014  (289) February 2014  (269) January 2014  (263)
December 2013  (264) November 2013  (241) October 2013  (234) September 2013
 (215) August 2013  (223) July 2013  (254) June 2013  (272) May 2013  (260)
April 2013  (279) March 2013  (277) February 2013  (294) January 2013  (343)
December 2012  (308) November 2012  (277) October 2012  (308) September 2012
 (270) August 2012  (263) July 2012  (247) June 2012  (298) May 2012  (287)
April 2012  (295) March 2012  (304) February 2012  (264) January 2012  (280)
December 2011  (251) November 2011  (261) October 2011  (281) September 2011
 (187) August 2011  (258) July 2011  (219) June 2011  (225) May 2011  (239)
April 2011  (268) March 2011  (249) February 2011  (205) January 2011  (209)
December 2010  (188) November 2010  (172) October 2010  (219) September 2010
 (185) August 2010  (203) July 2010  (175) June 2010  (167) May 2010  (164)
April 2010  (152) March 2010  (165) February 2010  (135) January 2010  (121)
December 2009  (126) November 2009  (66) October 2009  (87) September 2009  (65)
August 2009  (56) July 2009  (64) June 2009  (54) May 2009  (35) April 2009
 (38) March 2009  (40) February 2009  (33) January 2009  (42) December 2008
 (16) November 2008  (14) October 2008  (10) September 2008  (8) August 2008
 (11) July 2008  (7) June 2008  (8) May 2008  (8) April 2008  (4) March 2008
 (5) February 2008  (6) January 2008  (10) December 2007  (3) November 2007  (5)
October 2007  (9) September 2007  (7) August 2007  (21) July 2007  (9) June 2007
 (3) May 2007  (3) April 2007  (1) March 2007  (5) February 2007  (4) November
2006  (1) October 2006  (2) August 2006  (3) July 2006  (1) June 2006  (1) May
2006  (3) April 2006  (1) March 2006  (1) February 2006  (5) January 2006  (1)
October 2005  (1) September 2005  (3) May 2005  (1)

OTHER SITES

 * SAS blogs
 * Jobs for R-users

Copyright © 2021 | MH Corporate basic by MH Themes