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
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
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
>>
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