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
| # Day 25: Hexagons - US Wind Energy Infrastructure | |
| # Multi-resolution H3 hexagonal aggregation of 76,000+ wind turbines | |
| # Aggregating total installed capacity (MW) per hexagon | |
| # Points fade in at high zoom for individual turbine exploration | |
| library(mapgl) | |
| library(h3o) | |
| library(sf) | |
| library(dplyr) | |
| library(readr) |
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
| library(dplyr) | |
| library(slider) | |
| library(lubridate) | |
| library(tsibbledata) | |
| # Google, Apple, Facebook, Amazon stock | |
| gafa_stock <- as_tibble(gafa_stock) | |
| gafa_stock <- select(gafa_stock, Symbol, Date, Close, Volume) | |
| head(gafa_stock, 2) |