January 2021

Safety Checking Locally Installed Package URLs

January 8, 2021 | hrbrmstr

I went completely daft this week and broke my months-long Twitter break due to the domestic terror event in my nation’s capitol. I’ll likely be resuming the break starting today. Whilst keeping up with the final descent of the U.S. into a fully failed state, I also ... [Read more...]

Smoothing isn’t Always Safe

January 7, 2021 | jmount

Introduction Here is a quick data-scientist / data-analyst question: what is the overall trend or shape in the following noisy data? For our specific example: How do we relate value as a noisy function (or relation) of m? This example arose in producing our tutorial “The Nature of Overfitting”. One […]
[Read more...]

Smoothing isn’t Always Safe

January 7, 2021 | jmount

Introduction Here is a quick data-scientist / data-analyst question: what is the overall trend or shape in the following noisy data? For our specific example: How do we relate value as a noisy function (or relation) of m? This example arose in producing our tutorial “The Nature of Overfitting”. One […]
[Read more...]

30 Year Weather Data Analysis

January 6, 2021 | Business Science

???? ???? ???? Sign Up For More Blog Articles ???? ???? ???? Introduction In this article, we'll use the EPA Arcgis map that contains weather data going back to 1990. This will be a quick code-based blog post showing how to load, explore and visualize the data a local EPA monitor.
# Libraries
packages <- 
  c("data.table",
    "ggplot2",
    "stringr",
    "skimr",
    "janitor",
    "glue"
    )

if (length(setdiff(packages,rownames(installed.packages()))) > 0) {
  install.packages(setdiff(packages, rownames(installed.packages())))  
}

invisible(lapply(packages, library, character.only = TRUE))

knitr::opts_chunk$set(
  comment = NA,
  fig.width = 12,
  fig.height = 8,
  out.width = '100%',
  cache = TRUE
)
Weather Monitor Data Extraction Below, ...
[Read more...]

Predicting the Winner of Super Bowl LV

January 6, 2021 | R | JLaw's R Blog

TL;DR Using Pythagorean expectation we should expect the Baltimore Ravens to be Super Bowl Champions Using a Bradley-Terry model we should expect the Kansas City Chiefs to be Super Bowl champions Seems like it will be a good year for the AFC It’s Playoff Time in the NFL!. ...
[Read more...]

Isovists using uniform ray casting in R

January 6, 2021 | Richard Belcher

Isovists are polygons of visible areas from a point. They remove views that are blocked by objects, typically buildings. They can be used to understanding the existing impact of, or where to place urban design features that can change people’s behaviour (e.g. advertising boards, security cameras or trees). ...
[Read more...]
1 8 9 10 11 12 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)