This package enables automated processing of fisheries data into suitable forms for running ecosystem models against it, e.g. GADGET.
This package contains several distinct sets of functions:
mfdb function)mfdb_import_* functions)mfdb_* functions)gadget_* functions)Using this, you can install PostgreSQL locally and have a script automating the process of:
Also, this libary can be used to connect to a remote database and generate model files from that data.
This work is based on it’s predecessor, DST^2.
Besides R, you will also need RPostgreSQL set up to access the database, and PostgreSQL installed if you want to run the database locally too.
Installation of RPostgreSQL will happen automatically, however you need some PostgreSQL libraries before it will work:
Also, you can install the postgresql package using:
Some additional instructions are available here: https://wiki.debian.org/PostgreSql
Now, create an mf database that the user on your computer owns:
$ echo $USER # Check to see who you are, I'm lentinj
lentinj
$ su
# su - postgres
$ psql
postgres=# CREATE USER lentinj;
postgres=# CREATE DATABASE mf OWNER lentinj;If you don’t want to use a system-wide database, then investigate https://github.com/mareframe/mfdb-workspace which keeps all the required R dependencies and PostgreSQL database in the local directory.
Installation of RPostgreSQL will happen automatically, however you need some PostgreSQL libraries before it will work:
Also, you can install the postgresql package using:
Some additional instructions are available here: https://fedoraproject.org/wiki/PostgreSQL and some tips when troubleshooting CentOS installations can be found at: http://stackoverflow.com/questions/17633422/psql-fatal-database-user-does-not-exist
Now, create an mf database that the user on your computer owns:
$ echo $USER # Check to see who you are, I'm lentinj
lentinj
$ su
# su - postgres
$ psql
postgres=# CREATE USER lentinj
postgres=# CREATE DATABASE mf OWNER lentinj;If you don’t want to use a system-wide database, then investigate https://github.com/mareframe/mfdb-workspace which keeps all the required R dependencies and PostgreSQL database in the local directory.
If you can use the binary RPostgreSQL packages, then you do not need to install anything else. See https://code.google.com/p/rpostgresql/w/list for more information.
To install PostgreSQL, download the latest database installer from here:
http://www.enterprisedb.com/products-services-training/pgdownload#windows
Find the psql shell in the start menu, and create both an mf database and user:
You can use devtools to install this directly:
Or without:-
# install.packages("downloader")
pkg_file <- tempfile()
downloader::download(url =
'https://github.com/mareframe/mfdb/archive/6.x.tar.gz',
mode = 'wb', destfile = pkg_file)
install.packages(pkg_file, repos = NULL, type = 'source')This should install and/or update dependencies, such as DBI and RPostgreSQL.
Note that you may see the following error:
Error in get(Info[i, 1], envir = env) :
lazy-load database '.../Rpackages/mfdb/R/mfdb.rdb' is corruptThis is R failing to re-load the package in an existing R session, however the package is installed. Restart your R session and everything should be fine.
For an introduction to the package, read the package?mfdb help file in R. This is also available online.
There are a selection of example scripts in the demo/ folder. The example-* scripts show the full process of importing data from specified sources into the database, then querying this to aggregate into various gadget model files. The inttest-* scripts demonstrate other aspects, and also function as tests to ensure that the library works correctly (thus the ok() function calls).