Pokemon Subjects

Find interesting relationships between subjects!

library(pokemongor)
library(ggplot2)
library(dplyr)

pokemon_subjects %>%
  filter(pokemon_id %in% c(16, 19, 13)) %>%
  left_join(pokemon_names, by=c("pokemon_id"="index")) %>%
  ggplot(aes(
    x=weight_kg,
    y=height_m,
    color=factor(name))) +
  geom_point()

Forts

Explore forts in Tainan

library(ggmap)
forts %>% ggmap::qmplot(x = longitude, y = latitude, data = .)


ChihChengLiang/pokemongor documentation built on May 6, 2019, 10:54 a.m.