Tag Archives: package

Bootstrapping Debian package

Debian packages depend on a “Debian” directory. While you could create this by hand, there is a faster way: you can use dh_make. Here is what I used to get started: Things to what’d out for : You have to … Continue reading

Posted in Uncategorized | Tagged , , , , | Leave a comment

Creating an R package

I recently put all the EcoIP application into an R package. I was surprised at how easy it was and I wanted to share my experience :) Root Path Everything that is to be packaged needs to be in a … Continue reading

Posted in R | Tagged , , , , , , , , | Leave a comment

R: How to suppress package startup messages

suppressPackageStartupMessages(library(fields)) And you can still test the result of the `library` or `require` calls: a = suppressPackageStartupMessages(require(fields)) Variable ‘a’ will be TRUE if it was successful, FALSE otherwise.

Posted in R | Tagged , , , | 2 Comments