Lecture notes, example datasets and code for the introductory statistics module for geoscientists at University College London (UCL). The notes can be found here
The geostats package requires R, which can be downloaded from CRAN. In R, the geostats package can be installed from CRAN as follows:
install.packages('geostats')
The latest development version can be installed from GitHub using the remotes package:
install.packages('remotes')
remotes::install_github('pvermees/geostats/package')
The following code snippet creates a fifth order Koch snowflake:
library('geostats')
koch(n=5)
A complete list of documented geostats functions can be viewed by
entering help(package='geostats')
at the R command prompt.
This project is licensed under the GPL-3 License