Hi
I have the following problem :
I have 3 vectors xx, yy, zz :
xx <- c(5479, 6209, 6940, 7670, 8766, 9496, 10227, 11048, 11778,
12509, 13239, 13970,
14700, 15340, 15948)
yy <- c( 267, 275, 281, 287, 296, 306, 316, 325, 334, 351, 365, 377,
389, 419, 419)
zz <- c( 3, 3, 3, 3, 4, 4, 4, 4,
I am working with protein blocking assays and the end result is a 2D matrix
describing which antibodies block the binding of other antibodies to the target
antigen.I need to group the antibodies together into "bins" based on their
combined profiles in both the row and column direction.I am able
Indeed, the instructions at CRAN work (with the small addition that one
needs to be a superuser to edit the software sources). The confusion
arose because the c2d4u PPA is the main search result when googling
"upgrade R 3.0.1 ubuntu".
Andrew
On 09/15/2013 11:04 AM, Jeff Newmiller wrote:
Joh
I am not aware of an implementation of the algorithm you
describe. If you are not locked to that particular approach,
function diana() in package cluster performs polythetic,
hierarchical partitioning which could be used to get your
starting cluster centers.
Scanning over a paper by Su and Dy (yo
Hi Ron,
It looks like the data you want is generated by javascript; if so
Rcurl will not be able to retrieve it for you. See
http://stackoverflow.com/questions/14491598/how-do-i-download-the-source-code-for-a-webpage
and
http://stackoverflow.com/questions/9778076/how-to-view-webpage-source-code-u
John, the instructions at CRAN have worked for me.
---
Jeff NewmillerThe . . Go Live...
DCN:Basics: ##.#. ##.#. Live Go...
Live:
Ah, my apologies to Mr. Rutter are due then, but a proper reference by the OP
would have clarified this.
---
Jeff NewmillerThe . . Go Live...
DCN:Basics: ##.#. ##.#. Li
Hi,
Try:
lab<- as.character(x[,3])
library(lattice)
xyplot(y~time(y),type="b",xlab="Date",ylab="Price",scales=list(x=list(at=time(y),labels=format(time(y),"%b-%d"))),
panel=function(x, y, ...) {
panel.xyplot(x, y, ...);
ltext(x=x, y=y, labels= lab, pos=1, offset=1, cex
On 15-09-2013, at 19:11, Jeff Newmiller wrote:
> "Apparently"? How is this apparent? I don't see this mentioned at CRAN [1].
> Why would you reference some perhaps well-intentioned but possibly
> untrustworthy person's website when you could be downloading from a vetted
> distribution source?
Jeff, Andrew,
When you come up with a solution to the upgrade problem, please send it to me.
I have a similiar problem under Mint, which is an Unbuntu fork.
Thank you,
John
John David Sorkin M.D., Ph.D.
Professor of Medicine
Chief, Biostatistics and Informatics
University of Maryland School of
"Apparently"? How is this apparent? I don't see this mentioned at CRAN [1]. Why
would you reference some perhaps well-intentioned but possibly untrustworthy
person's website when you could be downloading from a vetted distribution
source?
[1] http://cran.us.r-project.org/bin/linux/ubuntu/
-
I am trying to upgrade to R 3.0.1, and I am working on ubuntu.
Apparently, the new version is available in the following ppa:
https://launchpad.net/~marutter/+archive/c2d4u. I have added this ppa
to my software sources.
I then run the typical sudo apt-get update && sudo apt-get dist-upgrade,
I want to put labels a,b,c,d on the data points
x<-data.frame(c(1,2,3,4),c(1,4,9,16),c("a","b","c","d"),
as.Date(c("01-10-2013", "02-10-2013","03-10-2013","04-10-2013"),
"%d-%m-%Y"))
colnames(x)<-c("x", "sq", "lables","dates")
y<-subset(x, select=c(dates,x,sq))
y<-read.zoo(y)
plot(y, plot.type="si
Read the help file on 'plot' and look at some of the examples to see
how to place labels in various places on a plot. This is not
difficult if you have read any of the documentation.
Jim Holtman
Data Munger Guru
What is the problem that you are trying to solve?
Tell me what you want to do, not h
I need to put labels in plot in R. Can someone please help? The labels are
in the excel file and loaded into "lables"
library(xlsx)
library(zoo)
fPTAnalysis<-"Input.xls"
data<-read.xlsx(fPTAnalysis,9)
lables<-subset(data, select=c(Labels))
data<-subset(data, select=c(Date,col1, col2 ))
data<-rea
On Sep 15, 2013, at 2:15 AM, Lutfor Rahman wrote:
> Thanks for that. Still I am a bit confused. Please advice me.
> Now, I have got minimal adequate model keeping all the those significant
> predictors in the model which is shown below:
> Coefficients:
>Estimate
Hi,
If you have a vector of values to compare:
thresh1<- c(30,4,12,65,5)
indx<-findInterval(thresh1-1,cumsum(X))
indx2<-ave(rep(indx,indx),rep(indx,indx),FUN=seq)
X[indx2]
# [1] 1 3 4 5 8 1 1 3 4 1 3 4 5 8 15 1 3
#you can split this into a list
split(X[indx2],cumsum(c(TRUE,diff(
Dear Brad,
It's impossible to know from the information given whether the model is
identified or not. Including a reproducible example of your problem, as the
r-help posting guide asks, is a good idea.
Assuming that OCB is an observed variable, however, the model is identified,
but implausible. T
Dear Anamika Chaudhuri,
On Sat, 14 Sep 2013 21:04:42 -0400
Anamika Chaudhuri wrote:
> Hi:
>
> Does Ellipse and dataellipse function in R produce the same ellipse? I
> wanted to see how the radius for the Ellipse function in R calculated. Also
> what is the var-covariance matrix, if any, assumed
Dear R users:
I am trying to run a path analysis using sem package in R. But I have
encountered one problem, below is my code:
SEMEX<-read.csv("D:/Documents and Settings/z3409964/Desktop/Hospital 1.csv")
library(sem)
cov.matrixSEMEX<-cov(na.omit(SEMEX))
SEMEX<-specifyModel()
CWB->CWB13,NA,1
CWB
Thanks for that. Still I am a bit confused. Please advice me.
Now, I have got minimal adequate model keeping all the those significant
predictors in the model which is shown below:
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) 5.84674
Hi,
I need to download data from this site:
http://www.cmegroup.com/trading/agricultural/grain-and-oilseed/corn_quotes_globex.html
I tried with following set of codes:
library(RCurl)
library(XML)
aa <-
getURL("http://www.cmegroup.com/trading/agricultural/grain-and-oilseed/corn_quotes
On 13-09-15 6:02 AM, Andreas Maunz wrote:
The other write* options seem to limited to me. I am looking for a way
to obtain a PS, or at least a PNG, since I develop a web application on
a server that needs to grab the screenshot and create a written report
with it. Starting my Xvfb like this:
Xvf
The other write* options seem to limited to me. I am looking for a way to
obtain a PS, or at least a PNG, since I develop a web application on a
server that needs to grab the screenshot and create a written report with
it. Starting my Xvfb like this:
Xvfb :5 -screen 0 640x480x24 -ac +extension GLX
Hi,
I know that with readlines you can start executing a code upon user input.
What I would like to do is to have the ability to abort a code based on a
new user input. E.g. when the user hits enter the code stops running. That
is, I would periodically check for a user input and stop the code when
require(rms)
?orm# ordinal regression model
For a case study see Handouts in
http://biostat.mc.vanderbilt.edu/CourseBios330
Since you have lost the original values, one part of the case study will
not apply: the use of Mean().
Frank
-
I have a dataset which has sever
See packages raster, rgdal and spacetime. Also the mailing list
R-Sig-Geo which is more relevant for this topic.
On Wed, Sep 11, 2013 at 10:02 PM, Eddie Smith wrote:
> Dear list,
>
> I am trying to do a space-time imputation for time series satellite
> imageries. Any recommendation for a good pa
27 matches
Mail list logo