Displaying 20 results from an estimated 10000 matches similar to: "meaning of "<<-""
2010 May 04
3
Two Questions on R (call by reference and pre-compilation)
Hi All,
I have two questions on R. Could you please explain them to me? Thank you!
1) When call a function, R typically copys the values to formal
arguments (call by value). This is very cost, if I would like to pass a
huge data set to a function. Is there any situations that R doesn't copy
the data, besides pass data in an environment object.
2) Does R pre-compile the object function to
2010 Jul 02
4
Visualization of coefficients
Dear all,
I try to show a subset of coefficients in my presentation. It seems
that a "standard" table is not a good way to go. I found figure 9
(page 9) in this file (
http://www.destatis.de/jetspeed/portal/cms/Sites/destatis/Internet/DE/Content/Wissenschaftsforum/Kolloquien/VisualisierungModellierung__Beitrag,property=file.pdf
) looks pretty good. I wonder if there is any function for
2010 May 05
3
Latex and Stangle()
Hi,
I'm using the Sweave and I would like include codes of the R
in my LaTeX file.
I extracts the R code with Stangle (), whose name is
Relatorio.R but I can't include it
in the Latex file as an appendix.
Suggests?
Thanks,
--------------------------------------
Silvano Cesar da Costa
Departamento de Estat?stica
Universidade Estadual de Londrina
Fone: 3371-4346
2010 Mar 07
2
Why can't "apply" be used with "as.factor" on a data.frame ?
Hi all,
Let's say I have a data.frame and wants to turn each of it's columns into a
factor.
My instinct would be to use as.factor with apply. But this won't work, and
result with a data.frame of characters.
I found another solution for how to achieve this, but I would also like to
understand - *WHY* does it work this way?
Here is an example script:
a <- data.frame(x1 = rnorm(100),
2012 May 09
2
file path
Dear all, is there any function to assert whether a file path is
legitimate, and to convert any potential file path to a legitimate
file path?
I automate a batch of files and write them to plain text files with
cat(). The file argument of cat() is generated automatically which may
contain characters such as ? < >, unacceptable in Windows OS. What I
do at this moment is to strip such
2010 Jun 12
1
Displaying "homogeneous groups" in aov post-hoc results ?
Hello dear R-help mailing list,
A friend of mine teaches a regression and experimental design course and
asked me the following question.
She is trying to find a way to display the "homogeneous groups" (after
performing tukey test on an aov object).
here's an example for what she means by "homogeneous groups":
She did one way anova and got these results for tukey test:
2010 Jan 01
4
How to use read.table with Hebrew column names ?
Hello dear R help group,
I am trying to read a .txt file, with Hebrew column names, while keeping the
column names looking well in R - but without success.
I uploaded an example file to:
http://www.talgalili.com/files/aa.txt
And am trying the command:
read.table("http://www.talgalili.com/files/aa.txt", header = T, sep = "\t")
This returns me with:
X.....ª X...ª......
2010 Apr 13
3
<<- how/when/why do you use it?
Hi all,
Today I came across scoping in the R
intro<http://cran.r-project.org/doc/manuals/R-intro.html#Scope> (after
reading Robert Gentleman
fortune<http://rfortunes.posterous.com/im-always-thrilled-when-people-discover-what>
on
lexical scooping) , and am very curious about the <<- assignment.
The manual showed one (very interesting) example for "<<-", which I
2010 Sep 01
6
Why is vector assignment in R recreates the entire vector ?
Hello all,
A friend recently brought to my attention that vector assignment actually
recreates the entire vector on which the assignment is performed.
So for example, the code:
x[10]<- NA # The original call (short version)
Is really doing this:
x<- replace(x, list=10, values=NA) # The original call (long version)
# assigning a whole new vector to x
Which is actually doing this:
x<-
2010 Jun 15
2
Graphics question: How to create a changing "smudge factor" for overlapping lines?
Hello all,
I am trying to create a Clustergram in R.
(More about it here: http://www.schonlau.net/clustergram.html)
And to produce a picture similar to what is seen here:
http://www.schonlau.net/images/clustergramexample.gif
I was able (more or less) to write the R code for creating the image, but
there is one thing I can't seem to figure out, that is the
*changing*"smudge factor"
2009 Nov 20
6
How to: highlight R syntax on webpages ?
My question if in the Subject, but if to extend: I am specifically curious
about WordPress blogs. But any solution will give me a lead.
Thanks,
Tal
----------------------------------------------
Contact me: Tal.Galili@gmail.com | 972-52-7275845
Read me: www.talgalili.com (Hebrew) | www.biostatistics.co.il (Hebrew) |
www.r-statistics.com/ (English)
[[alternative HTML version deleted]]
2009 Nov 18
2
Importing tRNA data into R ?
Hello dear R help group,
I would like to download the tRNA data on:
http://gtrnadb.ucsc.edu/download.html
And then import it into R.
Can anyone direct me as to how to do so?
Thanks,
Tal
----------------------------------------------
My contact information:
Tal Galili
E-mail: Tal.Galili@gmail.com
Phone number: 972-52-7275845
FaceBook: Tal Galili
My Blogs:
http://www.talgalili.com (Web and
2011 Oct 06
4
Mean(s) from values in different row?
Hello:
Is there a way to get a mean from values stored in different rows?
The data looks like this:
YEAR-1, JAN, FEB, ..., DEC
YEAR-2, JAN, FEB, ..., DEC
YEAR-3, JAN, FEB, ..., DEC
What I want is the mean(s) for just the consecutive winter months:
YEAR-1.DEC, YEAR-2.JAN, YEAR-2.FEB
YEAR-2.DEC, YEAR-3.JAN, YEAR-3.FEB
etc.
Thanks.
2011 Dec 29
3
Is it possible to "right align" text in R graphics?
Hello all,
The following line of code includes a right-to-left language text, yet the
R graphics engine displays it from left to right. One problem this causes
is when there are parenthesis in the test, here is a basic example?
plot(1:10, main = "שלום (טקסט)")
Is there a way to make sure the text is displayed from right to left?
Many thanks for any suggestions,
Tal
2010 May 22
2
Capturing R console output into a file (sink+savehistory ??)
After reading more, I understand I didn't formulate my last question
correctly, so please allow me to rephrase:
What I am looking for is a way to save the R console session output.
That is, a command that would combine the results of using:
?sink # And
?savehistory
My motivation for this is that doing it will allow someone who is a blind
user of R to be able to easily export his results to
2010 Jul 02
3
Combining several plots besides a dendrogram?
Hello all,
I would like to recreate the plot shown here (from a useR 2009
presentation):
http://www.agrocampus-ouest.fr/math/useR-2009/abstracts/pdf/Hocking.pdf
I downloaded the code for that image, and discovered that it relies on
external web services, and also having PERL installed on the computer.
I believe this could be done "locally" using the "seqLogo"
2010 Jan 21
2
"stack imbalance in ..." when loading a workspace
Hi all,
I just failed in loading a saved wordspace (13MB of size), and received
these errors:
Warning: stack imbalance in 'missing', 52 then 51
Warning: stack imbalance in 'if', 50 then 53
Warning: stack imbalance in 'as.environment', 57 then 59
Warning: stack imbalance in 'ls', 54 then 53
Warning: stack imbalance in '.Internal', 54 then 53
Warning: stack
2011 Apr 18
2
Windows 7, update.packages problem: "unable to move temporary installation"?
Hello all,
I am using R 2.13.0 with windows 7, after giving my user full privileges to
the R folder (as described
here<http://www.r-statistics.com/2011/04/how-to-upgrade-r-on-windows-7/>
).
This allows me to install new packages just fine.
However, when using update.packages(), to update existing packages, I keep
getting the following error (for example, when updating the MASS package):
2010 Nov 09
3
Is there a way to have 'comment' keep a list?
Hello all,
I recently discovered the "comment" command.
I see it can only hold a vector of characters.
Is there a way (or an alternative), to make it possible to have it keep a
list?
(for example, to keep different pieces of information like date of creation,
information of each variable and so on)
The closest solution I can think of is using 'names' on the vector, like
this:
2010 May 08
3
Count cases in a list
Hi everybody, I would like to count how many times names in list L,
nombreL, apear in list C, nombreC.
Can I improve the next program?
cuenta <- 0
topL <- length(nombreL)
topC <- length(nombreC)
for (i in 1:topL) {
for (j in 1:topC) {
k <-
grep(noquote(nombreL[i]),nombreC[j])