Displaying 20 results from an estimated 20000 matches similar to: "sourcing the content of directories"
2002 Oct 29
5
unix environment variables under R
hi,
i am working on a little R-project with a couple od other guys.we use
CVS, but everyone keeps the R-source files in different locations in his
home-directory. of course this causes trouble when sourcing R-files. i
thought a UNIX environment variable could be the solution, but R doesn't
seem to know about the environment variables.
e.g. >> source("$PROJECT/xxx.R")
2002 May 14
2
least summed square distance + fit
hi,
I have a matrix (representing original data) that looks e.g. like this
(consider it beeing x,y,z coords):
441 447 0
265 407 0
374 223 0
288 574 0
669 309 0
591 195 0
595 475 0
424 351 0
I get a second matrix (subject data) that is similiar to the above
matrix but it is scaled, translated and rotated (and of course a little
inprecise).
Also I have an
2002 Aug 20
2
t() converts data.frames ind matrix
hi,
i just recognized that the t() function converts a data frames into a
matrix (R 1.5). is that a bug or a feature ?
greetinx jan
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the
2002 Jul 05
1
aov() and NaN
hi,
another anova question !!
how does aov() treat missing values ?
since it might depend on my experimental design:
i have a within subject design with two factors ...
i use aov() like this:
aov(performance~type*block+Error(subj/(type+block)),data=anovaData)
now it might happen that i have a couple of NaN data points in my result
dataFrame.
how can i know/control how aov() is treating those
2002 Jun 24
1
multiple graphics in separate windows
hi,
I am looking for a possibility to open several graphics in independent
windows (is that the graphics device ?).
up to now, i was only able to generate a graphic, then save it (e.g. as
eps) and then generate a new plot that always overwrites the old
graphic. I am aware of the fact that I can generate multiple plots in a
single graphics window, but this is not what i am looking for ..
2002 Oct 11
1
plot region ??
hi,
i am using the barplot function, but i have problems with the plot
region when adjusting the bar width manually. if you only want to plot 2
bars the default barwidth is to wide (aesthetically speaking). by
adjusting width and xlim one can actually produce narrow bars, but then
the plotted graph is not in the center of the plot region, which means
that for example the title of the plot
2005 Apr 07
5
apply
Hi,
simple question I guess:
the following line works well:
aveBehav=c(apply(sdata, 2, mean))
However, I would like to pass an argument to the function mean, namely
na.rm=TRUE
Does anyone knows how to do this?
Thanks in advance,
Jan
2002 Mar 15
2
cutting barplots at e.g. 50%
hi,
i want to plot percentage values using barplot. everything works fine so
far. giving a chance level of 50% i want to plot only the area above 50
percent.
i can of course cut using ylim=c(50,100) but this does not work
properly since i also see some of the area below 50%.
thanks for suggestions,
jan
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help
2002 May 15
2
combining vectors to matrices or data frames
hi,
during a for(i in 1:xx]) loop I always newly calculate a vector
(e.g. tmp<-c(a,b,c,d,e) )
now i need that vector to be attached at the bootom of a matrix (or
data.frame).
e.g.
m<-matrix()
for(i in 1:5]){
#some calculations for a,b,c,d,e
a<- ... b<- ... c<- .. ....
tmp<-c(a,b,c,d,e)
??? now I need to attach this tmp to the matrix m ???
}
i couldn't get rbind
2002 Sep 06
1
acutally a statistics question
hi,
knowing there are a lot of statistics guru's in the R-mailing list, i
throw in a statistics question.
i have data that i do not know how to statistically test:
subjects are repeatedly asked to make a decision (e.g. left-right ->
coded as 0 or 1). i have 20 subjects, each subject made 8 decisions.
i now want to analyse whether my experimental manipulation induced a
systematic bias
2002 Dec 05
1
(no subject)
hi,
suppose you have a for-loop like this:
for(i in1:x) {} ...
now you want to generate a variable in every
cycle (since you do not know the size of x in
beforehand you have to do this dynamically).
the variable should e.g. look like this:
variableName1<-c() (if x==1)
variableName2<-c() (ifx==2)
variableName3<-c() (if x==3)
..
..
i tried this(which obviously didn't work):
2002 Oct 15
2
V-value in the wilcox.test resp. wilcox.exact
hi,
when performing a wilcox.test or a wilcox.exact i get results that looks
like this:
wilcox.exact(x, mu=.5)
Exact Wilcoxon signed rank test
data: x
V = 207, p-value = 0.0006905
alternative hypothesis: true mu is not equal to 0.5
the way i understand the wilcox.test (or wilcox.exact) the V-value
represents the summed up ranks of either the positive or negative
differences,
2002 Sep 26
1
T-Value, ties and the wilcox.test()
hi,
i am looking for a way to correct for ties in the wilcoxon signed rank
test -> e.g. wilcox.test(x,mu=.5)
one way i have heard of is to look up the p value in a table that has
been produced by Buck (1975). obviously i need to know the T-value to do
that -> how do i get the T-value from the wilcox.test() function.
is there any other (already implemented) way to correct for ties in
2002 Mar 13
2
barplots with std-error
hi,
i am trying to generate nice barplots with std-errors.
do i really have to generate the std-errors myself by the segments()
command ?
thanks for help,
jan
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the
2006 Dec 01
1
writabledatabase_delete_document()
Hi guys
I have implemented xapian on a website, and it currently has about 2M
items in its index.
Its all been working quite nicely so far, until I tried removing some
old items from the index (removing items when the index was smaller was
no problems at all).
When I try to remove them now (using writabledatabase_delete_document()
via php), it halfway freezes up the machine, and the apache
2004 May 31
1
small question
Hello frieds,
do I need to do 'net rpc join -U Administrator'
(to selfjoin the localhost to the domain)
if I have samba3.0.4 running
in ROLE_DOMAIN_PDC and with ldapsam-Backend
and want to use winbindd for ntlm_auth squid authentification?
--
Best regards,
Malte mailto:malte.woelky@gmx.de
_________________
Malte Woelky -=[SkyNet]=-
2003 Dec 14
5
reverse lexicographic order
Hi all,
I have some email addresses that I would like to sort in reverse
lexicographic order so that addresses from the same domain will be
grouped together. How might that be done?
Murray
--
Dr Murray Jorgensen http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: maj at waikato.ac.nz
2007 Jun 23
7
rake db:migrate strange behaviour "wrong number of arguments (1 for 0)"
Hi everybody,
May be somebody has a clue, why I get these errors below, while trying
to migrate.
Any help is very appreciated!
Greetinx
Rafael
I was trying to experiment a litte bit with redMine (www.redmine.org).
But I can only install it locally. On a system with already a
mongrel_cluster running, I get strange errors, already while trying to
start the migration rake db:migrate
2007 Jun 11
3
domU on gfs
Hey All,
I have a cluster setup and exporting gfs storage everything is
working ok(as far as I know anyway). But instead of mounting the gfs
storage I want the xen guest to be installed on the shared gfs storage.
But with my current setup when I install the domU on the gfs storage it
changes it to ext3. Is it possible this way or does the domU have to be
on an ext file system?
2004 Jun 04
1
install software when the user logs on (with admin previledges)
Hi All,
is it possible to install software when the user logs on ?
I think the problem is, that some software needs admin-rights to be
correctly installed?
The logon script is executeted with the username/right of the
logging-on user, so one can think of changing the user from within the netlogon-script...
but this would be dangerous, as one has to write the password
of an admin account in the