similar to: Directory-like data organisation w/ environments?

Displaying 20 results from an estimated 1000 matches similar to: "Directory-like data organisation w/ environments?"

2003 Nov 10
5
Finding the name ob an object
Hi, all! I want to give an object to a function and use the NAME of this object inside the function to build new objects based on this name. How do I get the name of an object if I don't pass a string containing the name but the object itself? Christoph. -- Christoph Lange MPI fuer biologische Kybernetik |Phone: +49-7071-601-607| Postfach 2169, D-72012 Tuebingen |FAX: +49-7071-601-616|
2000 Oct 13
5
Random factor ANOVA, Repeated measures ANOVA, Within subjects designs.
Hi, we are just about to evaluate R as a standard statistics package for our institute. We looked around the help - manual, the FAQ, etc. and did not find anything for the topics of random factors in ANOVA, repeated measures in ANOVA, or within subjects designs in R. Could anyone point us to any information concerning - univariate approach to repeated measures anova - multivariate
2004 Sep 03
1
new user and non parametric test
Hi * i'm trying to do my statistical analysis with R (on a debianGNULinux) i've installed R and now i'll try to import my data from .xls Where to search for non parametric test in R ? I'm studing neurons velocity and i've to check if after the perfusion with a factor x the velocity changes but as my variable is not normally ditributed i've to try with non parametric
2004 May 05
3
reading data
Hello, I??m trying to read data from a text file but i can??t When i print: > a<-read.table(file="C:/dados10.txt") The next error appears: Error in file(file, "r") : unable to open connection In addition: Warning message: cannot open file `C:/dados10.txt' Can you help me? Margarida PS:The operating sistem i??m using is Unix
2004 Jun 21
6
Visual stimulus presentation using R?
Dear all! Although the Psycho-Toolbox for Matlab is free software, Matlab isn't. I'm planning to do an experiment where it's essentail to travel to the subjects, not let the subjects come to where the Matlab licences are :-( So I need to use a free software for my experiment if I don't want to by an extra Matlab licence (which I don't want to). Did anyone ever try to do
2004 Nov 23
3
str() resets class for environments
I noticed the following today --- str() seems to remove any extra class information added to an environment. > e <- new.env() > class(e) [1] "environment" > class(e) <- c("foo", class(e)) > class(e) [1] "foo" "environment" > str(e) Classes 'foo', 'environment' length 0 <environment> > class(e) [1]
2004 Aug 06
0
ices file name problem
On Tuesday 10 December 2002 02:45, Stephen Winnett wrote: > I have a collection fo mp3s that I wish to stream. > They came from a windows environment and when ripped > they used spaces in the files names. > > When I prepare a file list with the spaces on the linux box it works > fine with > mpg123 and muse buts spits out error messages from ices and continues > to cycle
2004 Aug 06
1
how to start liveice with screen?
Moin, I installed liveice as well as 'screen' at a debian maschine, both applications are running fine. But when I try to start liveice in a 'screen' environment then the liveice process ends without an error message: $ /usr/bin/screen -dmS liveice /usr/bin/liveice A prefixed 'strace -f' shows me: [pid 5614] old_mmap(NULL, 167936, PROT_READ|PROT_WRITE,
2004 Sep 16
1
checking for _non-existing_ documentation entries.
Hi! I have renamed some functions and deleted others. I have noticed that R CMD check complains only about newly added functions, but documented non-anymore-existing functions seem not to matter. I knew about prompt and promptMethods promptClass. They are extremely useful if you are starting to write a package. But what with existing packages that have to be rewritten? Having code and
2003 Mar 26
5
predict (PR#2686)
# r-bugs@r-project.org `predict' complains about new factor levels, even if the "new" levels are merely levels in the original that didn't occur in the original fit and were sensibly dropped, and that don't occur in the prediction data either. (At least if `drop.unused.levels' was set to TRUE, which the default.) test> scrunge.data.2_ data.frame( y=runif( 3),
2004 Aug 06
3
ices file name problem
I have a collection fo mp3s that I wish to stream. They came from a windows environment and when ripped they used spaces in the files names. When I prepare a file list with the spaces on the linux box it works fine with mpg123 and muse buts spits out error messages from ices and continues to cycle through the playlist until I break out of ices. <p>Error opening /music/d/m4/ANNOINTED -
2004 Jun 09
1
Using macros
Dear list members, I've been puzzling over how best to clean up the code for my Rcmdr package. In particular, there's a lot of repetitive tcltk code in the package, and as Martin M?chler has pointed out to me, this makes the package difficult to maintain. If R were Lisp, I'd use macros for much of the clean up. My efforts to do similar things with R functions has run into problems
2002 Sep 19
3
savehistory directories and quitting R (PR#2038)
# # r-bugs@r-project.org # ###################################################### Because I work in different directories, but always want to save my .Rhistory in the same place, I have changed the system function savehistory to this: function (file = "D:/R50/.Rhistory") invisible(.Internal(savehistory(file))) When I use q() to quit R, and it asks me whether I want to
2004 Sep 27
1
mtrace and debug
Hello, pointed to the article "Debugging Without (Too Many) Tears" of Mark Bravington in Rnews Vol 3/3, December 2003 there is a package mvbutils mentioned. So I started to install this package from within R > install.package(mvbutils) I receive an error essage that this package is not found! Is due to a merge,removal or rename of this package? When I try to follow this
2016 Dec 12
2
why does parent.frame() cycle when called from inside capture.output()?
Hello R devel/help, I ran into this strange behavior: # showstack is supposed to walk through the stack of parent # environments when it is called: showstack = function() { env = environment() for(i in 1:12) { env = do.call(parent.frame, list(), env=env) print(env) } } # a simple chain of functions: g3=function(t) showstack()
2016 Dec 12
2
why does parent.frame() cycle when called from inside capture.output()?
Hello R devel/help, I ran into this strange behavior: # showstack is supposed to walk through the stack of parent # environments when it is called: showstack = function() { env = environment() for(i in 1:12) { env = do.call(parent.frame, list(), env=env) print(env) } } # a simple chain of functions: g3=function(t) showstack()
2011 Sep 29
3
Finding inter-function dependencies within a package
Hi, I'd like to know which functions in a package call one specific function. I think I've seen a tool for identifying such dependencies, but now I can't find it :-( Searches of help and R site search for keywords like function, call, tree, depend haven't helped :-( Can anyone point me in the right direction? Thanks in advance, Keith Jewell
2008 Dec 11
5
package development
I'm making the move of the survival package from my own environment to, and have stumbled into a vacuum. The R Extensions manual has really nice instructions about how to lay out the directories, order the files, and run tests for DISTRIBUTION of a product, but I can't find anything on how to set up a reasonable DEVELOPMENT environment. In my local world, I had the .c and .s files in
2006 Jun 20
2
Documentation issues [Was: Function hints]
I would like to follow up on another one of the documentation issues raised in the discussion on function hints. Duncan mentioned that the R core were working on preprocessing directives for .Rd files, which could possibly include some sort of include directive. I was wondering if a "includeexamples" directive might also be considered. It often makes sense to use the same example to
2004 Apr 25
5
a simple suggestion for the next version of R windows
Is it possible to replace the word "R Console" on the title bar (is it what it's called? It's the blue area above menu bar) with the name of the work space file you're using or loaded, so people who are runing multple R sessions at same time can identify them immediately. I'm using 1.9.0 in SDI mode. Thanks, ...Tao