search for: helpfile

Displaying 20 results from an estimated 137 matches for "helpfile".

2006 Dec 12
0
[782] trunk/wxruby2/samples/bigdemo: HtmlHelpWindow sample with helpfile
...s {background:#dfd;text-decoration:none;display:block;padding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[782] trunk/wxruby2/samples/bigdemo: HtmlHelpWindow sample with helpfile</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>782</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd>2006-12-11 19:14:41 -0500 (Mon, 11 Dec 2006)</dd> </dl&g...
2003 Dec 04
0
Comboot for showing DOCS
hm, nice algorythm thingie. I'm not a programmer, so here goes: currently: F1 helpfile.txt probably results in DISPLAY helpfile.txt perhaps extend this option: F1 arg1 arg2 arg3 argX if arg1 does not exist, abort (currently also done?) if arg1 ends in COM extension, execute it and pass the optional arg2/3/X parameters if arg1 ends in C32 extension, same thing. else DISPLAY arg1...
2003 Jun 24
0
R help output in separate window
...es in any format other than "help" or HTML. help.display<-function(topic,display.type=c("help","html")) { topic=substitute(topic) if (is.name(topic)) topic <- as.character(topic) else if (!is.character(topic)) stop("Unimplemented help feature") helpfile<-get.help.filename(topic,display.type) if(length(helpfile)) { if(display.type == "help") system(paste(options("pager"),helpfile,"&")) else { if(display.type == "html") system(paste(options("browser"),helpfile,"&")...
2001 Jan 19
1
Can't find linked HTML helpfile unless package is specified (PR#819)
.../home/peter/sbin/netscape ... Use help( help , htmlhelp=FALSE) or options(htmlhelp = FALSE) to revert. Warning message: Using non-linked HTML file: style sheet and hyperlinks may be incorrect in: help("help") > As you can see, a linked version of the helpfile is used if I specify a package. But if I don't specify a package, the linked helpfile is not found. The code in file "base" for function help() that seems to generate this error is: lnkfile <- file.path(Sys.getenv("HOME"), ".R",...
1997 Jun 16
0
R-alpha: image(): minor bug in R code and helpfile (fixes)
I've noticed a few minor annoyances/mismatches with S in image(). First, if you give it just a matrix argument (image(z)), it complains rather than (as S does) using default x and y. This patch fixes it to work (mostly) like S (although in keeping with what was in R already the default x,y coordinates are ((0,1),(0,1)) rather than (1:nrow,1:ncol)). 5,16d4 < if(is.list(x)) {
2008 Dec 17
4
vim helpfile tag issues
Just wondering if anyone can replicate this issue.... On CentOS 5.2, using vim 7.0.237, I'm having a consistent issue across all my centos boxen. if I try and access the help files direct (as root), such as ":help tutor" I get: "usr_01.txt.gz" [readonly][noeol][converted] 11L, 4393C E434: Can't find tag pattern Press ENTER or type command to continue If I press
2003 May 24
3
help output paged in separate window
Hi folks, I use R in X windows on Linux. Normally, I use 'less' as pager, which is fine for scanning through 'help' (or '?') output in the R window itself; the help session is terminated by typing "q", as usual for 'less', and the R window then reverts to the R command line interface. Often, I would like to have the output from 'help' pop up in
2003 May 24
3
help output paged in separate window
Hi folks, I use R in X windows on Linux. Normally, I use 'less' as pager, which is fine for scanning through 'help' (or '?') output in the R window itself; the help session is terminated by typing "q", as usual for 'less', and the R window then reverts to the R command line interface. Often, I would like to have the output from 'help' pop up in
2005 Aug 09
5
RGUI crash when opening script in XP Home enviroment
If there is a helpfile open (f.e ?glm) and it is the top window, then an exception error occurs (closing RGUI) when I hit the open file button. If the helpfile is not the top window (of the RGUI) I am able to open a new script without any error. The RGUI is not closing complete there is a blank screen left which I hav...
2009 Jul 22
1
Link to documentation in another package
Dear all, One of the functions that I wrote (ggsave.latex) extents the functionality of a function (ggsave) in another package (ggplot2). Instead of copying all the information I would like to create a link in the helpfile of ggsave.latex to the helpfile of ggsave. I tried \code{\link{ggsave}} and \code{\link{ggplot2::ggsave}}, but neither worked. Both cases gave a 'missing link' warning. Any suggestions? Thierry ------------------------------------------------------------------------ ---- ir. Thierry Onke...
2003 Jun 02
1
Help with factorized argument in solve.QP
Hi I'm having problems getting the "factorized" argument in solve.QP (part of the quadprog library) to work as expected. The helpfile states that when the factorized argument is set to TRUE, then the function requires the inverse of a square-root factor of the Hessian instead of the Hessian itself. That is, when factorized=TRUE, the Dmat argument should be a matrix R^(-1), such that the Hessian of the objective function is t(R) %...
2003 Aug 29
2
length() and nchar()
I would propose to add " See also: `nchar' for counting the number of character in character vectors. " to the helpfile of length(), because it is rather difficult to find nchar() if one has only search terms as "length", "len", "strlen" in mind. Sincerly Wolfram Fischer
2008 Jun 18
2
embedding R in c++ (Qt) application
...(UN)PROTECT, SETCAR, all the data types (SEXP, CHARSXP etc..) ) don't mean anything to me. The section on the SEXP type in the R-internals doc didn't tell me much. How can I create such objects containing my data? how can I extract numbers or strings from SEXPs? Can you suggest me a helpfile/documentation to read to get into understanding this? Is there an index of the R C-exports/keywords to look up these things? I've been digging in the sources, but I thought there may be a better way....? I've been able to extract all the exported symbols from the R.dll, but without...
2001 Sep 30
2
non linear models
Dear Members of the Help List, Honestly, I feel a little bit stupid - I would like to do something rather simple: fit a non linear model to existing data, to be more precise I wanted to start with simple higher order polynomials. Unfortunately, I do not quite understand the examples in the helpfiles for the nlm, nls and nlsModel commands. Could anyone please provide a simple example to get me started (i.e. y = p + x^2 fitted to x= -1 0 1 y = 2 1 2; a simple parabola p should turn out to be 1). How do I do this and how do I do the same for something like y = a + bx + cx^2 + dx^3 ?? Thank yo...
2001 May 29
5
Scripting capabilities for R
I'm in the final week of teaching a course to beginners using R and S-Plus. Since I forbade the students from using the "point-and-click" interface in S-Plus, they've become reasonably proficient at using the command line in both programs. Students really like the speed and ease-of-use of R for the vast majority of their projects. I think they'd switch to R completely
2004 Sep 19
2
Timing source on SMP system - Disable RTCforzaprtc
Any help would be appreciated as I am a novice trying to work around a difficult situation. This is what the zaprtc helpfile says: zaprtc, getting zaptel timing out of your realtime clock ======================================================== Make sure that you _dont_ have rtc support compiled into your kernel! INSTALL: make USE: make load REMOVE: make unload I interpreted this as disabling support for RTC in...
2008 Dec 17
1
Having problem with menu.c32 on serial console
Hi all: I am running pxelinux 3.72 with the corresponding menu.c32. I am setting up console access via: serial 0 38400 console 0 The rest of the config file entries should be safe enough: display pxelinux.cfg/helpfile say . Type any key for manual boot. <F1> or <Ctrl-F> 1 for help F1 pxelinux.cfg/helpfile then the usual MENU/label commands. When I use the same config file without the two serial settings, it works fine (on VGA). When I try to use it with the serial settings all I see is t...
2004 May 03
1
plotting in R
Hi there, I have 2 questions which I cannot find answers for in Dalgaard or the helpfiles currently available. (1) I wish to plot 3 ecdf plots on one graph. Is there any way of holding a figure to plot all on the same plot. I can't get an ecdf for any plot command other than "plot" or "ecdf.plot" so using lower level command is no good, have also tried x11...
2006 Apr 26
1
new.frame()
...ld like to know whether R has a homogeneous function of S-plus's new.frame(), which create explicit frames in the evaluator and provide a locale for computations that can be shared among various functions. new.frame() in S-plus: http://www.uni-muenster.de/ZIV/Mitarbeiter/BennoSueselbeck/s-html/helpfiles/new.frame.html Thanks.
2009 May 03
1
fImport data from Australian stock exchange
...daily", try = TRUE) but this does not (asx stock): stock<-yahooSeries(symbols = "ERA", from = "1999-01-01" , to = Sys.Date(), source = NULL, frequency = "daily", try = TRUE) Can someone please tell me if there is an argument I need to supply that is not in the helpfile? many thanks James [[alternative HTML version deleted]]