Skip to content

A data package that combines animal sightings, weather and tourist numbers.

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

numbats/ecotourism

Repository files navigation

ecotourism

Lifecycle: experimental CRAN status

The goal of ecotourism is to provide data to use for example analyses. It has data on wild life (cuttlefish) occurrences, tourism counts by region and weather matching the locations.

Installation

You can install the development version of ecotourism from GitHub with:

# install.packages("devtools")
devtools::install_github("numbats/ecotourism")

Example

Here is how to plot occurrences:

library(ecotourism)
library(ggplot2)
library(ggthemes)
data(oz_lga)
data(cuttlefish)
ggplot(oz_lga) +
  geom_sf(colour="white", fill="grey90") +
  geom_point(data=cuttlefish, aes(x=lon, y=lat,
                                  label=date),
             colour="#EA6900", alpha=0.5) +
  xlim(c(113.09, 153.38)) +
  ylim(c(-43.38, -10.41)) +
  theme_map()
#> Warning in geom_point(data = cuttlefish, aes(x = lon, y = lat, label = date), :
#> Ignoring unknown aesthetics: label
#> Warning: Removed 7 rows containing missing values or values outside the scale range
#> (`geom_point()`).

About

A data package that combines animal sightings, weather and tourist numbers.

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