similar to: step() in sink() and Sweave()

Displaying 20 results from an estimated 200 matches similar to: "step() in sink() and Sweave()"

2009 Apr 30
1
stepAICc
Dear R users, Would it be difficult to change the code of stepAIC (from the MASS library) to use AICc instead of AIC? It would be great to know of someone has tried this already. Best wishes Christoph.
2009 May 05
0
stepAICc function (based on MASS:::stepAIC.default)
Dear all, I have tried to modify the code of MASS:::stepAIC.default(), dropterm() and addterm() to use AICc instead of AIC for model selection. The code is appended below. Somehow the calculations are still not correct and I would be grateful if anyone could have a look at what might be wrong with this code... Here is a working example: ## require(nlme) model1=lme(distance ~ age + Sex, data =
2008 Dec 05
4
Sink does not send graphs to sink file
Wiindows XP R 2.7 I am using sink() to send the results of my analyses to a text file. Unfortunately my graphs do not become part of the file. Is there anyway that I can have both the text and graphic output of my analyses appear in a file? Thanks, John John David Sorkin M.D., Ph.D. Chief, Biostatistics and Informatics University of Maryland School of Medicine Division of Gerontology Baltimore VA
2013 Oct 23
1
interrupting Sweave leaves open sink connection
Hello, if I interrupt Sweave while it's processing a file it seemingly leaves an open sink connection that hides printed output. Can this be changed to reset the sink on exit? I've been baffled by this for years. This is seen in Windows (R Under development (unstable) (2013-10-20 r64082)) and an older Linux (R version 3.0.0 (2013-04-03)). Run the code below in two parts with a manual
2008 Sep 12
1
sink file type and Latex (Lyx)
Does anyone know what file type sink is outputting to? I've been reverting output from R using sink and wanted to add it to my Appendix in LaTex (Lyx) using "Verbatiminput". However, I get an error message as LaTex is expecting an ASCII file. Can I set sink somehow to ASCII or is there another option? Thanks Joanne
2005 May 10
0
about sink and scan
Hi All r-helper, my question like this: I use "sink" function to get output into one file,during the sink process , output keep writing into this file,I want to check is there any new output write into this file(which "sink function create"), using "scan" function to read new output from that file. if I use the cat with "\n" ,and
2003 May 07
3
Sink for a subdirectory
Hi, how do I sink output to a subdirectory under which R is running? For example, suppose R is running in ~me and I would like to sink output to ~me/Subdir/filename. The obvious sink( "Subdir/filename" ) does not seem to work. Thanks very much.
2012 May 23
0
[LLVMdev] Sink Store Operations in Branch Paths?
Is there a pass/opt that will sink (via a phi and new store in post dominator for example) store operations in different paths to the post dominator (providng each path does not include a loop)? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120523/74509855/attachment.html>
2019 Jun 01
0
[PATCH AUTOSEL 5.1 028/186] drm/nouveau/disp/dp: respect sink limits when selecting failsafe link configuration
From: Ben Skeggs <bskeggs at redhat.com> [ Upstream commit 13d03e9daf70dab032c03dc172e75bb98ad899c4 ] Where possible, we want the failsafe link configuration (one which won't hang the OR during modeset because of not enough bandwidth for the mode) to also be supported by the sink. This prevents "link rate unsupported by sink" messages when link training fails.
2019 Jun 01
0
[PATCH AUTOSEL 5.0 026/173] drm/nouveau/disp/dp: respect sink limits when selecting failsafe link configuration
From: Ben Skeggs <bskeggs at redhat.com> [ Upstream commit 13d03e9daf70dab032c03dc172e75bb98ad899c4 ] Where possible, we want the failsafe link configuration (one which won't hang the OR during modeset because of not enough bandwidth for the mode) to also be supported by the sink. This prevents "link rate unsupported by sink" messages when link training fails.
2019 Jun 01
0
[PATCH AUTOSEL 4.19 021/141] drm/nouveau/disp/dp: respect sink limits when selecting failsafe link configuration
From: Ben Skeggs <bskeggs at redhat.com> [ Upstream commit 13d03e9daf70dab032c03dc172e75bb98ad899c4 ] Where possible, we want the failsafe link configuration (one which won't hang the OR during modeset because of not enough bandwidth for the mode) to also be supported by the sink. This prevents "link rate unsupported by sink" messages when link training fails.
2019 Jun 01
0
[PATCH AUTOSEL 4.14 18/99] drm/nouveau/disp/dp: respect sink limits when selecting failsafe link configuration
From: Ben Skeggs <bskeggs at redhat.com> [ Upstream commit 13d03e9daf70dab032c03dc172e75bb98ad899c4 ] Where possible, we want the failsafe link configuration (one which won't hang the OR during modeset because of not enough bandwidth for the mode) to also be supported by the sink. This prevents "link rate unsupported by sink" messages when link training fails.
2004 Aug 06
0
Re: DarkIce 0.6 and Lame 3.89: underlying sink error
On Fri, 5 Oct 2001, Samuel Hathaway wrote: > Hey, > > I've compiled DarkIce 0.6 dynamically linked to LAME 3.89. I'm running > Slackware 8 and using gcc 2.95.3. Running DarkIce yields the following > output: > > DarkIce 0.5 live audio streamer, http://darkice.sourceforge.net Actually, that's DarkIce 0.5's output. DarkIce 0.6 says: DarkIce 0.6 live
2000 Dec 20
0
closing the sink connection a) is possible and b) can't be undone (PR#782)
# Have no other connections opened yet > showConnections() class description mode text isopen can read can write > sink("tempfile") > close(getConnection(3)) > cat("send some output\n") Error in stdout() : invalid connection > sink() Error in sink() : invalid connection > cat("send some output\n") Error in stdout() : invalid connection >
2000 Dec 20
0
closing the sink connection a) is possible and b) can't be undone
# Have no other connections opened yet > showConnections() class description mode text isopen can read can write > sink("tempfile") > close(getConnection(3)) > cat("send some output\n") Error in stdout() : invalid connection > sink() Error in sink() : invalid connection > cat("send some output\n") Error in stdout() : invalid connection >
2005 Jun 01
2
sink() within a function?
sink() isn't behaving as i expect, when used inside a function, eg: x<-data.frame(F=c("O","O")) f<-"foo.txt" sink(f); format(x); sink(); # foo.txt looks great! foo<-function(x,f) { sink(f); format(x); sink(); } foo(x,f=f) # foo.txt is empty! why is this, and how can i successfully sink() within a function? my real function does some
2005 Jun 01
2
sink() within a function?
sink() isn't behaving as i expect, when used inside a function, eg: x<-data.frame(F=c("O","O")) f<-"foo.txt" sink(f); format(x); sink(); # foo.txt looks great! foo<-function(x,f) { sink(f); format(x); sink(); } foo(x,f=f) # foo.txt is empty! why is this, and how can i successfully sink() within a function? my real function does some
2015 Mar 18
0
Proposing a change in the base::sink interface for type argument
It's only an illusion until one actually tries providing a vector. > sink('foo', type=c('s','m')) Error in match.arg(type) : 'arg' must be of length 1 The additional benefit of match.arg() which you may have not appreciated is that it allows the user to abbreviate. That is, > sink('foo', type='o') is valid usage. The essential
2000 Oct 18
1
Help oo sink
---------------------- Forwarded by Pan Yuming/Extern/AAM on 18.10.2000 12:58 --------------------------- Pan Yuming 18.10.2000 11:41 To: Prof Brian Ripley <ripley at stats.ox.ac.uk> cc: Subject: Help oo sink (Document link: Pan Yuming) Dear professor, continue with the example i used, i want to save the prediction results but when i run a R file containing the following code, it
2004 Mar 25
1
Error : sink stack is full
Hello, I have implemented a method which uses sink to follow the progression status of an iterative process (Below is part of the code) I have already used such kind of code with no problem. Today, I get a "sink stack is full" error. I wonder if it could be linked with the fact that my .RData has a large size (around 7 Mo) ??? I hope that someone can help me ... Thanks in advance