Skip to content

Commit

Permalink
added level with NA in cities
Browse files Browse the repository at this point in the history
  • Loading branch information
pvictor committed May 7, 2020
1 parent 3e3a75e commit c5fca6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data-raw/cities.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ library(stringi)
cities <- data.frame(
continent = c("America", "America", "America", "Africa",
"Africa", "Africa", "Africa", "Africa",
"Europe", "Europe", "Europe"),
"Europe", "Europe", "Europe", "Antarctica"),
country = c("Canada", "Canada", "USA", "Tunisia", "Tunisia",
"Tunisia", "Algeria", "Algeria", "Italy", "Germany", "Spain"),
"Tunisia", "Algeria", "Algeria", "Italy", "Germany", "Spain", NA),
city = c("Trois-Rivières", "Québec", "San Francisco", "Tunis",
"Monastir", "Sousse", "Alger", "Oran", "Rome", "Berlin", "Madrid"),
"Monastir", "Sousse", "Alger", "Oran", "Rome", "Berlin", "Madrid", NA),
stringsAsFactors = FALSE
)

Expand Down
Binary file modified data/cities.rda
Binary file not shown.

0 comments on commit c5fca6c

Please sign in to comment.