Displaying 20 results from an estimated 900 matches similar to: "R-exts.texi: suggestion for small change to Vignette section (PR#7325)"
2004 Oct 29
3
R-exts.texi: suggestion for small change to Vignette section (PR#7323)
I recently wrote a vignette, with the following at the top of the .Rnw
file:
%%\VignetteIndexEntry{How to use look up tables for h() functions}
%%\VignetteDepends{sjedmin, spatstat}
Using vExplorer() on this function, I got an error from this part of
getVigInfo():
lines <- grep("^%[[:space:]]*\\\\Vignette", file)
if (length(lines) == 0)
stop("File ", vig,
2012 Jul 03
2
Problem in vignette packaging of Sweave in utils package
In ?Sweave, it refers to Sweave User Manual. In the doc folder of
utils package, I see "Sweave.pdf".
However, I can't find it from within R
> vignette("Sweave User Manual")
Warning message:
vignette ?Sweave User Manual? not found
> browseVignettes("utils")
No vignettes found by browseVignettes("utils")
> library(help=utils)
does not
2008 May 27
0
vignette help
Could someone please point me to where information about
the two entries %\VignetteDepends{} and %\VignettePackage{}
are documented?
I'm getting an error with %\VignetteDepends{} with my
package name in braces. Looking at the vignettes on my
system, some include the package name and some don't.
Should it be there? If so, why might I be getting an error
doing so?
$ R CMD check SuperCurve
2010 Nov 16
1
Vignette Questions
Dear List,
I recently stumbled over the possibility and need to specifiy
% \VignetteDepends{}
in my vignettes. I did not know about this, and I notice that it is not
mentioned in the R-extensions manual section "Writing package vignettes".
I have some questions with regards to that:
- would it be possible to include into the section "Writing package
vignettes" some hint
2007 Jul 18
1
possible bug R CMD check: No space(s) allowed after \VignetteDepends{}
R CMD check gives an error when a vignette entry %\VignetteDepends{} has any
extra space at the end.
Maybe this is by design, but I found it confusing.
Changing the function "vignetteMetaRE" in tools package could solve the
problem. I.e.
vignetteMetaRE <- function(tag)
paste("[[:space:]]*%+[[:space:]]*\\\\Vignette", tag,"\\{([^}]*)\\}", sep
= "")
2008 Jan 21
1
Adding an Sweave Vignette to a package
I'm finalizing development of a package that will include a vignette.
Without the vignette, the package builds fine with no warnings and is
ready for distribution. Now, I am following the directions for
developing vignettes "Sweave, Part II: Package Vignettes" by Friedrich
Leisch.
I am using a windows XP machine (other session info below). Here is what
I have done.
1) I add the
2014 Aug 25
1
vignette index going AWOL
I?m preparing a package (fastR) for submission to CRAN, but the vignette index keeps going AWOL, or at least R CMD check ?as-cran thinks so. I?ve tried several things and gave myself the weekend to think of other things, but I can?t figure it out. Perhaps someone on the list can lend a hand.
Here?s one example situation, where I build the index.html file myself and put it in inst/doc/index.html
2005 Nov 12
0
Suggested changes to R-lang.texi and R-exts.texi
Dear all,
I would like to suggest the following changes to the R documentation:
1) R-exts.texi:
Having had my first experience with uploading a package to
ftp://cran.R-project.org/incoming/, I think it would be nice if the
documentation pointed out that one should use ftp and not sftp (at
least on my machine sftp failed to make a connection) and that one
should log in as user
2005 Nov 18
1
R-exts.texi in SVN version 36380
G'day all,
after issuing `svn up' on my machine this morning, I noticed that
`make info' choked on R-exts.texi. Below is a patch that seems to
solve the problem. BTW, while `make info' runs now, I still get the
following warning:
/usr/bin/makeinfo --enable-encoding -D UseExternalXrefs -I/opt/src/R-devel-src/doc/manual /opt/src/R-devel-src/doc/manual/R-exts.texi
2015 Oct 22
1
Missing parenthesis in R-exts.texi
Line 1204 (right now) of svn/r-devel/doc/manual/R-exts.texi has
dest <- file.path(R_PACKAGE_DIR, paste0('bin', R_ARCH)
which lacks a closing ) -- two open, only one close right now.
Dirk
[1] I would have reported a bug, but I am aware of a recent and
not-so-friendly response when bugzilla was used to report a typo.
--
http://dirk.eddelbuettel.com | @eddelbuettel | edd at
2013 Jan 25
0
Suggested updated to doc/manual/R-exts.texi
The R-exts manual still says
Note also that for running @LaTeX{}, the Debian @acronym{GNU}/Linux
@acronym{CRAN} check systems use the Debian TeXLive at footnote{currently
the long obsolete TeXLive 2009.} distribution
(@uref{http://packages.debian.org/@/en/@/sid/@/texlive}); the Fedora and
and what is in the footnote has not been true for quite some time as a visit
to the URL (or to the
2005 May 22
1
R-exts.texi: nuke-trailing-whitespace has changed name (PR#7888)
Full_Name: Bj?rn-Helge Mevik
Version: 2.1.0
OS: GNU/Debian 3.0 Linux
Submission from: (NULL) (80.111.104.162)
In Appendix B R coding standards of the Writing R Extensions manual, Emacs/ESS
users are encouraged to use
(add-hook 'ess-mode-hook
(lambda ()
(ess-set-style 'C++)
;; [snip]
(add-hook 'local-write-file-hooks
2017 Jul 03
0
Patch for R-exts.texi
Attached is a patch for R-exts.texi against r72880.
Here are some of the changes I made:
- Fix a broken link:
https://developer.apple.com/library/mac/#documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/Introduction/Introduction.html
->
https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/index.html
- Changed a few http
2003 Dec 26
1
Problems converting output from Sweave to PDf
I am having trouble converting the output from Sweave
into a valid PDF file.
I have created a simple .Rnw file which will become a
full vignette at some point, but during the
intermediate testing, I got errors from texi2dvi.
This is what I have done.
0) Using a Windows Xp system
1) Created a file called GeneSpring.Rnw
2) Convert this to Tex using Sweave("GeneSpring.Rnw")
from within R
2007 Apr 18
1
Problem with: Vignette dependencies (\VignetteDepends{} entries) must be contained in
Hello!
I have just discovered a possible bug or lack of my knowledge. The last
option is not so uncommon and I decided to ask here before flooding the
bugs repository.
Say I have a package test with vignette. Moving package directory to
some other name, say test2, fails R CMD check with
$ R CMD check test2
* checking for working latex ... OK
* using log directory
2004 Aug 31
1
make check failure
I have built today's R-devel without problem on a fresh installation of
debian testing. However, 'make check' fails. In
'tests/Examples/tools-Ex.Rout.fail':
> ### * vignetteDepends
>
> flush(stderr()); flush(stdout())
>
> ### Name: vignetteDepends
> ### Title: Retrieve Dependency Information for a Vignette
> ### Aliases: vignetteDepends
> ### Keywords:
2004 Aug 24
0
additional examples for R-intro.texi (PR#7195)
Here are some patches to expand some of the examples in R-intro.texi.
--
Brian Gough
Network Theory Ltd,
Publishing the R Reference Manuals --- http://www.network-theory.co.uk/R/
--- R-intro.texi~ Tue Aug 24 11:21:37 2004
+++ R-intro.texi Tue Aug 24 11:21:37 2004
@@ -6288,6 +6288,21 @@
use
@example
+> help(package = "@var{name}")
+@end example
+
+A complete list of the
2000 Jun 23
1
*.texi file
Dear Prof Ripley an d the R core team:
I have installed the new RW1010. But I can't see (in
RW1010\doc\manual ) the file R-intro.texi
I'd like to know if I have done something wrong.
Thank you,
Juan Antonio
--
===========================================
J.A.Caballero M.
Dpto. Estadistica e Investigacion Operativa
Campus de Rabanales
Edificio C-II
Universidad de Cordoba
14080 SPAIN
2009 Mar 16
1
vignette index not linked into HTML help system for package
Dear R developers,
I observed that the html help page index entry "Read overview or browse
directory" for package vignettes is missing in recent R-devel.
This happened on two independent computers (WinXP Prof. SP3, German)
with R-devel compiled from sources svn rev. 48125 resp. 48128
It's the same for my own and also for more prominent packages as well
(e.g. grid).
The
2003 Mar 04
1
suggestion for addition to R-lang.texi
Small suggestion for the documentation:
Should the = operator for assignments, described on
http://developer.r-project.org/equalAssign.html, now be included in
the operator table in doc/manual/R-lang.texi? If so, one possibility
could be after lines 1096/7:
@item @code{<-}
@tab Left assignment, binary
@item @code{=}
@tab Left assignment, binary
Also, where is the best place to send