This is not a vignette at all as fritools is just a set of miscellaneous utilities, tools and helper functions written for the Forest Research Institute of the State Baden-Wuerttemberg, Germany.

fritools does not use any other packages than those in the R Core. It does not import or depend on any third party package.

Use

path <- system.file(package = "fritools")
m <- packager::build_manual(path = path,
                            output_directory = tempdir(),
                            roxygenise = FALSE, verbose = FALSE)
path <- strsplit(grep("--output", m[["command"]], value = TRUE),
                 split = "=")[[1]][[2]]
fritools::view(path, program = "evince")
## Warning in fritools::view(path, program = "evince"): You are in batch mode.

to read the full manual.

All functions belong to at least one of these families:

path <- system.file(package = "fritools")
if (file.exists(file.path(path, "source")))
    path <- file.path(path, "source")
missing <- suppressWarnings(fritools::find_missing_see_also(path = path))
## Families so far:
## Other CSV functions
## Other call functions
## Other operating system functions
## Other statistics
## Other searching functions
## Other German umlaut converters
## Other file utilities
## Other test helpers
## Other option functions
## Other version functions
## Other script path getter functions
## Other bits and pieces
## Other subsetting functions
## Other logical helpers
## Other package functions
## Other R memory functions
## Other hash functions for objects
if (length(missing) > 1) {
    print(missing)
    stop("Functions without context.")
} else {
    message("All functions with context.")
}
## All functions with context.