Displaying 20 results from an estimated 9000 matches similar to: "What is wrong with m?"
2010 Apr 09
1
Rsge: recursive parallelization
In principle, I'd like to be able to do something like this:
sge.parLapply(seq(10), function(x) parLapply(seq(x), function(x) x^2))
In practice, however, I have to resort to acrobatics like this:
sge.options(sge.remove.files=FALSE)
sge.options(sge.qsub.options='-cwd -V')
sge.parLapply(seq(10),
function(x) {
sge.options(sge.save.global=TRUE)
2003 May 23
3
calling files of commands in R
Please excuse me if this is a very basic question and I am just
misunderstanding the basic structure of R.
Right now, I am writing everything in a buffer (emacs) and then copying it
into R when it is correct. Is there a way to save a file of commands and
then just type the file name or something in R and have the commands executed
within R?
Anna
2003 Jun 12
1
indexing into a list 2
I didn't explain myself well.
You are right about not needing a list on the right hand side of the equation
below. What I end up with is a list of arrays. Now what i would like to do
is to access the individual elements in the arrays in the list. For example,
when I type, y[[1]], I just get the whole first array. How do I get the
first element in the first array for instance? Is
2003 Jul 01
3
lines and legend
When I am trying to put a legend on a plot where I am using "lines", R just
ignores it. I can do it with boxplot or plot, but just not with lines. Am I
doing something wrong? Maybe I am just making a mistake?
Anna
2003 May 07
2
plot vertical labels along x axis
I know how to print my own labels along the x axis:
plot(1:10,xlab = "My label", axes = FALSE)
axis(1,at=seq(1,10,by=2),labels=c("first","second","third","fourth","fifth"))
Is there a way to make the labels print vertically along the axis rather than
horizontally? (I'm not sure if this is even going to look all right, but I
2003 Jul 31
2
anova
I am totally confused as to how to use anova. I have three vectors and would
like to use anova on them but I don't understand how lm or glm comes into
play. In matlab, you just give the three vectors. Why isn't it the same in
R?
Any help would be greatly appreciated.
Anna
2003 Oct 23
6
repeating colors in graph 2
I've tried looking at ?colors and ?palette and if I'm understanding it
correctly, I'm supposed to type in (for example) palette(rainbow(13)) before
I type in my plot (of 13 lines) if I want 13 different colors. But this does
not work. Other things that i have tried besides rainbow give me errors.
Am I just doing something completely wrong?
Anna
2003 Oct 23
2
repeating colors in graph
I have a plot with 13 lines and R repeats colors. Is there any way to make R
not repeat colors, or is this just a fundamental limitation on R's part to
say have only 8 colors that it can use?
Anna
2013 Sep 14
2
samba4 adding an index to sam.ldb
I have a large installation >20k users. We're using samba4 for AD Authentication, and also email address validation. I'm trying to edit the @INDEXLIST in sam.ldb to add an index on otherMailbox to speed up searches (0.05 sec for indexed, vs 2.5 sec for non-indexed searches) I'm finding that when I use ldbedit to do this, it appears to add the additional @IDXATTR. However, when I
2003 Apr 29
2
plots
I have two separate questions.
The first is when I use xlab, the labels on my tic marks disappear. Is there
a way to make them reappear? Also, is there a way to make my own labels for
the tick marks?
My second question is, after I have spent a lot of time getting my plot to
look just right, I want to save it to a file, but the only way I seem to know
how to do it is to first use
2010 Dec 07
3
Samba4 LDAP LDB Indexes
I have a system running Samba 4 Alpha 11, and I seem to have a corrupted LDB
file in my directory. (Probably the result of taking a backup without using
tdbbackup). Right now, running tdbbackup on the file produces an error
message similar to the following:
Failed to insert into DC=WWW,DC=EXAMPLE,DC=COM.ldb.bak.tmp
failed to copy DC=WWW,DC=EXAMPLE,DC=COM.ldb
If I run
ldbsearch -H
2017 Oct 27
3
Adding indexing to samba AD question.
Hai,
I need to add some extra indexing on my AD DB, and im not sure if what the correct/best methode is.
And is there any reason i should not do this, i did search on the wiki, but could not find the info i searched for.
I know the following. Checked the current index. ( source info : https://wiki.samba.org/index.php/LDB )
ldbsearch -H /var/lib/samba/private/sam.ldb -s base -b @INDEXLIST
2003 Aug 13
1
anova and tukeyHSD
I would like to do a one way anova and then a tukeyHSD. I have three vectors
A,B and C. In a previous help message, I was told to do the following for
the anova:
y = c(A,B,C)
group = factor(rep(a:3,c(7,9,13))) #provided there a 7 elements in A,9 in B
and 13 in C
and then
anova(lm(y~group))
Looking at the tukeyHSD method it looks like it wants the aov method which I
don't understand.
2003 Jun 05
2
Fwd: Re: legend() with option adj=1
Is there a simpler way then the solution to the one that was posted here? I'm
not very proficient with legend, and I don't understand this solution. All
I have is two or more lines on one plot that I want to put a legend on and I
can't figure out how to do it from the examples. Can you give a very simple
example? It does not have to be fancy!! I have never worked with a
2017 Mar 23
4
[Samba 4.5] Very slow LDAP Queries (almost unusable), performance tunning ?
Are use using zarafaAccount=1 withing the search filters?
I use this things like this :
(&(objectClass=person)(zarafaAccount=1)(|(mail=%s)(otherMailbox=%s)))
Or for groups.
(&(objectclass=group)(zarafaAccount=1)(|(mail=%s)(otherMailbox=%s)))
That helps a lot.
! If you switch to kopano beware to change the SCHEMA and filters
zarafaAccount changed to kopanoAccount
Greetz.
Louis
2003 Aug 12
1
Post Hoc methods for anova in R
Does anyone know of some methods already programmed up ( ie freeware : ) ) in
R for the post hoc methods in anova. Particularly Scheffe's method or
Tukey's?
Anna
2003 Jun 11
1
indexing into a list
I am trying to make an array of lists. I don't think that I am doing it right
however because I cannot access the individual elements of the lists once I
have created the array of lists. Can someone help?
for(i in 1:3){
y[[i]] = list(name[((i-1)*index+1):(i*index)])
}
Anna
2007 Jul 25
6
Using R_MakeExternalPtr
Hi all,
I've been writing a package and I've run into a problem that I'm unsure how
to solve. I am looking to pass a C++ class object to R so that it may be
passed back to another C++ function later on to be used. I'm quite new to R
and this is my first time writing a package, so I hope you can bear with me.
The following is how I create the class and use
2017 Mar 27
4
[Samba 4.5] Very slow LDAP Queries (almost unusable), performance tunning ?
Can you tell more about your setup?
Is zarafa and samba on the same server for example.
Which MTA are you using postfix/exim?
My top was about 150 users, and all my printers are connected also so about 200 devices do ldap searches.
but my setup is split over 10+ servers ( 2 are AD DC )
So best is to tell what you can about your setup, anonimize if needed.
Greetz,
Louis