Displaying 20 results from an estimated 4000 matches similar to: "Arguments for Plot()"
2009 Dec 02
1
Incorporating the results of White's HCCM into a linear regression:
Using hccm() I got a heteroscedasticity correction factor on the diagonal of
the return matrix, but I don't know how to incorporate this into my linear
model:
METHOD 1:
> OLS1 <- lm(formula=uer92~uer+low2+mlo+spec+degree+hit)
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) -0.0623377 0.0323461 -1.927 0.057217 .
uer 0.2274742 0.0758720
2009 Jan 13
3
postfix - dovecot - ldap
Hallo,
I want to run postfix - dovecot - openldap working together
The first problem is, that dovecot doesn't create the directories
/usr/local/mail/abcshop.at/bamm/Maildir
cur
new
tmp
although I can contact the Dovecot-Server
telnet localhost 143
OK ....
1 login bamm at abcshop.at secret
OK Logged in
/usr/local/mail/ is owned by virtual:virtual
If I uncomment the line
#mail_location =
2008 May 24
8
Why is wineprefixcreate deprecated?
I understand that it is applied automatically when needed, but there are times when one would want to run it manually. An example is when I want to literally create a new wine prefix such as
env WINEPREFIX="/home/bamm/apps/myprog" wineprefixcreate
to prepare a clean profile for future installation of myprog. I know that running setup with a WINEPREFIX would create the clean profile,
2008 Jun 12
2
Wine 1.0 release date to clash with Firefox 3
According to http://wiki.winehq.org/WineReleasePlan the new release date for Wine 1.0 is set to June 17.
However the Firefox 3.0 release date is also set to June 17.
http://developer.mozilla.org/devnews/index.php/2008/06/11/coming-tuesday-june-17th-firefox-3/
Their release is planned to be high profile and they even plan to set a Guinness world record for downloads in a single day!
2011 Dec 11
2
no non-missing arguments to max; returning -Inf
Hi,
I just wanted to object of class xts, zoo and I got the error
no non-missing arguments to max; returning -Inf
After all the values were printed. Tried searching on this forum, but no
luck.
Anyone has any idea ?
Thanks.
George
--
View this message in context: http://r.789695.n4.nabble.com/no-non-missing-arguments-to-max-returning-Inf-tp4182296p4182296.html
Sent from the R help mailing list
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
2012 Mar 23
1
Where does Wine store the Font settings?
Hello,
Using winecfg, I changed the Font settings in Desktop Integration. It works and shows up in wine applications.
When I search the registry using regedit or by searching the .reg files at the root of the wine prefix, the custom Font settings don't appear. I guess it isn't stored in the registry, or is it? If not, where is it stored?
Thanks for any info. :)
Bamm
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]]
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])
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 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 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"
2009 Oct 14
2
Scatter plot using icons (from a gif) instaed of points - is it possible ?
Hello dear R-help group.
I wish to plot a scatter plot using icons (or images) instead of points.
Is it possible? and how 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 general, Hebrew)
http://www.biostatistics.co.il
2011 Jan 30
2
Extracting a (*specific*) variable name from a list of function arguments (not "...")
Hello all,
I would like to extract the variable name passed into a specific argument of
a function.
Using match.call() will give me a list of arguments and what was passed into
them, but I couldn't find how to get a particular argument out of it (at
least without using some string manipulation).
Here is an example (in it, my objective is to know what is the variable name
assigned to the
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:
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):
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 Apr 26
2
Using optim function for logistic model simulation
Hello!
I'm a college undergrad desperately trying to finish up my thesis. I
have a dataset on the distribution of a grassland bird from the
Breeding Bird Survey. I have a very straightforward and simple version
of the logistic growth model to describe changes in this bird's
abundance over time. The variables are the natural birth rate,
mortality, and carrying capacity. The equation itself
2010 Nov 25
3
Is there an implementation for "URL Encoding" (/format) in R?
Hello all,
I would like some R function that can translate a string to a "URL encoding"
(see here: http://www.w3schools.com/tags/ref_urlencode.asp)
Is it implemented? (I wasn't able to find any reference to it)
Thanks,
Tal
----------------Contact
Details:-------------------------------------------------------
Contact me: Tal.Galili@gmail.com | 972-52-7275845
Read me:
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