This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
# 2019-07-12 -- tidytuesday | |
# Data on UFO sightings ,2019-06-25 | |
# Ilya Kashnitsky, [email protected] | |
#=============================================================================== | |
# load required packages | |
library(tidyverse) | |
library(janitor) | |
library(sf) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
# 2019-07-19-- ikashnitsky.github.io | |
# Reproduce Figure 2 from http://doi.org/10.1007/s10708-018-9953-5 | |
# Ilya Kashnitsky, [email protected] | |
#=============================================================================== | |
library(tidyverse) | |
library(hrbrthemes); import_roboto_condensed() | |
# the data as tribble |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
# 2019-11-08 PRC dataviz workshop | |
# Simple rules and tricks to improve dataviz communication | |
# slides: https://ikashnitsky.github.io/share/1911-prc20-dataviz/slides.html#/ | |
# Ilya Kashnitsky, [email protected] | |
#=============================================================================== | |
library(tidyverse) | |
library(magrittr) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
# 2019-11-30 -- gist | |
# Safe and efficient palette of five colors, print and colorblind friendly | |
# Ilya Kashnitsky, [email protected] | |
#=============================================================================== | |
library(magrittr) | |
library(prismatic) | |
# a function to test color paletes quickly |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
# 2019-12-07 -- twitter | |
# Generate snow and animate it | |
# Ilya Kashnitsky, [email protected] | |
#=============================================================================== | |
library(tidyverse) | |
library(magrittr) | |
library(gganimate) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
# 2019-12-08 -- digital dem | |
# Lab 1 -- Popularity of the US names | |
# Ilya Kashnitsky, [email protected] | |
#=============================================================================== | |
# Data: https://www.ssa.gov/oact/babynames/limits.html | |
# Post: https://fivethirtyeight.com/features/how-to-tell-someones-age-when-all-you-know-is-her-name | |
# Gist: https://gist.github.com/ikashnitsky/654965cb971f3a11928806c4d0a0ef23 | |
# Tweet: https://twitter.com/ikashnitsky/status/1201770729282424832 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
# 2019-12-12 -- twitter | |
# Generate snowfall -- every snowflake scaled to a country population size ^1/3 | |
# Ilya Kashnitsky, [email protected] | |
#=============================================================================== | |
library(tidyverse) | |
library(magrittr) | |
library(gganimate) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
# 2020-04-08 -- twitter upd 2023-01-01 ik-q | |
# Showcase the map hack -- use border lines instead of polygon outlines | |
# https://twitter.com/ikashnitsky/status/1247875600305598464 | |
# https://ikashnitsky.github.io/2023/map-borders | |
# Ilya Kashnitsky, [email protected] | |
#=============================================================================== | |
library(tidyverse) | |
library(sf) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
# 2020-05-06 -- twitter | |
# Andrew Noymer's update of the total US covid deaths | |
# Ilya Kashnitsky, [email protected] | |
#=============================================================================== | |
library(rtweet) | |
library(httr) | |
library(tidyverse) | |
library(hrbrthemes) |