Load multiple packages and install if needed

The 'agridat' package uses dozens of packages in the examples for each dataset. The 'libs' function provides a simple way to load multiple packages at once, and can install any missing packages on-the-fly.

This is very similar to the `pacman::p_load` function.

libs(...)

Arguments

...

Comma-separated unquoted package names

Value

None

References

None

Author

Kevin Wright

Examples

# \dontrun{ libs(dplyr,reshape2) # }