Re: [R] Please read **URGENT** Need help with R

2015-09-14 Thread cryan
After your 4th line of code (your second read.csv statement) what is the output of str(EURUSD) --Chris Ryan Sent from my android device. -Original Message- From: Mehmet Dogan To: r-help@r-project.org Sent: Sun, 13 Sep 2015 17:57 Subject: [R] Please read **URGENT**

[R] several car scatterplots on one graph

2010-10-13 Thread cryan
R version 2.11.1 on WinXP How do I get 3 scatterplots with marginal boxplots (from the car package) onto a single plot? I have a data frame called bank dim(bank) [1] 46 5 head(bank) x1x2 x3 x4 pop 1 -0.45 -0.41 1.09 0.45 0 2 -0.56 -0.31 1.51 0.16 0 3 0.06 0.02 1.01 0.40

Re: [R] From R to LaTeX to pdf?

2009-11-24 Thread cryan
Doesn't the APA package in LaTeX help in this situation? --Chris Ryan Original message Date: Tue, 24 Nov 2009 18:24:52 +0100 From: Tom Backer Johnsen bac...@psych.uib.no Subject: Re: [R] From R to LaTeX to pdf? To: Erik Iverson eiver...@nmdp.org Cc: r-help@r-project.org

[R] changing plot symbol and/or size in plot(cox.zph)

2009-11-21 Thread cryan
Is there a way to make the plot(cox.zph(model)) use some other symbol than open circles? plot(cox.zph(model), pch=whatever) seems to have no effect. Thanks. --Chris Ryan __ R-help@r-project.org mailing list

[R] run R script automatically by double-clicking WinXP desktop icon

2009-09-22 Thread cryan
I've written a simple script that does some surveillance analysis on daily counts of walk-in clinic visits, for our county health department. (Actually, Michael Hohle's surveillance package does all the work; I just customized it a little to work with the way our data are recorded.) The output

Re: [R] run R script automatically by double-clicking WinXP desktop icon

2009-09-22 Thread cryan
that helps, thanks. I can put a final line in my batch file that opens a viewer for the png graph. I was hoping to find a way to do make it run in the Rgui (picky, I know.) My graph is clearer in the default graph device that pops up in the Rgui; it's blurry in the Windows viewer for png

Re: [R] How to google for R stuff?

2009-05-20 Thread cryan
For Google searches, I find that throwing in the term cran on every search helps weed out irrelevant pages. For example, instead of r residuals I type r cran residuals --Chris Ryan Original message Date: Wed, 20 May 2009 09:43:14 -0400 From: Luc Villandre

[R] sasweave, and R 2.5.1 vs 2.8.1

2009-04-05 Thread cryan
Looking for advice on a problem with Sweave, sasweave, and version 2.5.1 versus 2.8.1 of R. I'm running all this on WinXP. I have both 2.5.1 and 2.8.1 installed. I have sasweave set up to run R 2.5.1, as this line in the runR.bat file shows: set RTERM=C:\Program Files\R\R-2.5.1\bin\Rterm.exe

Re: [R] A package to set up a questionnaire enter data

2008-12-11 Thread cryan
Not an R package, but EpiData is free software designed to to exactly this. It's a wonderful piece of software. Define fields, add annotations, provide defaults, provide allowable values or ranges, calculate one field based on entry to another, conditional skipping from one question to another

Re: [R] New to List - just starting to learn R - question about reading in data

2008-11-07 Thread cryan
I've not had occasion to use it yet, but perhaps read.fwf. At the R command prompt, type ?read.fwf to learn about it. --Chris Ryan Original message Date: Fri, 07 Nov 2008 23:23:18 -0500 From: Dirty D [EMAIL PROTECTED] Subject: [R] New to List - just starting to learn R - question

Re: [R] Fw: Logistic regresion - Interpreting (SENS) and (SPEC)

2008-10-13 Thread cryan
I recall a concept of Snout: sensitivity that is high enough to essentially rule out the presence of disease. And Spin: specificity that is high enough to essentially rule in the presence of disease. So perhaps the below is backwards? The higher the sensitivity, the greater the NPV? And

Re: [R] using R for online course/distance ed

2008-09-10 Thread cryan
Well, I can speak from the receiving end. I'm enrolled in an online distance masters degree in statistics at Texas AM University. I'm in my fourth course. We are pretty much free to use any statistical software we want. The first semester (distributions, goodness of fit, one- and two-

[R] plot(linear model) without lines

2008-07-16 Thread cryan
running R 2.5.1 on WinXP. plot(model formula here) produces 4 useful residual diagnostic plots. Two questions about them: 1. How can I isolate just one of the four, and have only that one be shown? str(plot(model)) didn't give me any insight. 2. How can I make the lines (I guess they

Re: [R] how to use \Sexpr{} with sweave

2007-10-09 Thread cryan
Just goes to show, it helps to search the archives! I discovered this in the R-help archives: https://stat.ethz.ch/pipermail/r-help/2004-July/053920.html And similarly, in the Sweave manual: A.16 After loading package R2HTML Sweave doesn’t work properly! Package R2HTML registers an Sweave

Re: [R] how to use \Sexpr{} with sweave

2007-10-07 Thread cryan
Duncan-- The .tex file that you describe as output of Sweave(test.Rnw) is what I had expected. But I get this .tex file when I run Sweave: \documentclass[12pt]{article} \usepackage[margin=1.25in]{geometry} \usepackage{graphicx} \usepackage{Sweave} \begin{document} \begin{Schunk}

Re: [R] how to use \Sexpr{} with sweave

2007-10-07 Thread cryan
I think some inadvertent cutting and pasting may have made my last e-mail difficult to interpret. Here is the .tex file I get as output of Sweaving my .Rnw file. Note that \Sexpr{2+6} appears where you get (and I want) simply 8. \documentclass[12pt]{article}