Skip to content

jae0/aegis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jan 12, 2025
5c6eee3 · Jan 12, 2025
Jan 12, 2025
Aug 12, 2024
Jun 3, 2019
Jul 11, 2024
Nov 9, 2017
Nov 9, 2017
Jul 24, 2023

Repository files navigation

aegis

aegis is a R-library of utility functions that help interoperate with other aegis*, bio*, and stmv packages. They support data QA/QC, modelling and predicting with a focus upon spatial and spatiotemporal data manipulations.

If you do not want to deal with this as a package, you can load in functions to memory as:

# download aegis to some local directory (=="savdir")

source( "https://github.com/jae0/aegis/blob/master/R/loadfunctions.r" )

loadfunctions("aegis", directory=savdir ) # read in the rest 

To install you run the following:

  remotes::install_github( "jae0/aegis")

You probably will want to have an Rprofile set up properly such as:

homedir = path.expand("~")
code_root = file.path( homedir, "bio" )   ### replace with correct path to the parent directory of your git-projects
data_root = file.path( homedir, "bio.data" )   ### replace with correct path to your data

require( aegis )

A more expanded version, similar to what I use, can be found below:

https://github.com/jae0/aegis/blob/master/inst/scripts/example_Rprofile.R