8000 GitHub - YunhuiQi/worldle: R package for playing Worldle
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

YunhuiQi/worldle

 
 

Repository files navigation

worldle

The goal of worldle is to be able to play a game of guessing a country based on its shape.

Installation

You can install the development version of worldle like so:

remotes::install_github("Stat585-at-ISU/worldle")

Example

How do you play?

library(worldle)
#> Registered S3 method overwritten by 'dplyr':
#>   method         from       
#>   print.location geojsonlint
## basic example code
# play_wordle() # that function doesn't exist yet

Get the shapefile of a country:

url <- "https://geodata.ucdavis.edu/gadm/gadm4.0/shp/gadm40_AUT_shp.zip"
austria <- get_shapes(url)
austria <- thin(austria, 0.001)

Now plot the country:

library(ggplot2)
library(dplyr)
#> 
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#> 
#>     filter, lag
#> The following objects are masked from 'package:base':
#> 
#>     intersect, setdiff, setequal, union

austria %>% ggplot() + geom_sf() + theme_void()

Would you have guessed that this is Austria?

About

R package for playing Worldle

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • R 100.0%
0