Re: [Rd] Creating package Vignette

2011-07-14 Thread Melissa Jane Hubisz
Another workaround is to create a "dummy" vignette which does nothing but include the pdf file. Something like this: vignette.Rnw: % \VignetteIndexEntry{vignette} % \VignetteKeywords{keywords here} % \VignettePackage{package name} \documentclass[a4paper]{article} \usepackage{hyperref} \usepackag

[Rd] winbuilder warnings and errors

2010-09-08 Thread Melissa Jane Hubisz
Hello, I have been developing a package for phylogenetic analysis which I plan to submit to CRAN soon. It passes R CMD check with no warnings on my linux and Mac OS X machines. I don't have much experience with Windows and have been using the win-builder service to see how the package compiles on

Re: [Rd] transient memory allocation and external pointers

2010-04-20 Thread Melissa Jane Hubisz
Melissa On Mon, Apr 19, 2010 at 1:22 PM, Seth Falcon wrote: > On 4/19/10 8:59 AM, Simon Urbanek wrote: >> >> On Apr 19, 2010, at 10:39 AM, Melissa Jane Hubisz wrote: >> >>> Hello, >>> The Writing R extensions manual section 6.1.1 describes the transient >>

[Rd] transient memory allocation and external pointers

2010-04-19 Thread Melissa Jane Hubisz
Hello, The Writing R extensions manual section 6.1.1 describes the transient memory allocation function R_alloc, and states that memory allocated by R_alloc is automatically freed after the .C or .Call function is completed. However, based on my understanding of R's memory handling, as well as som