Displaying 20 results from an estimated 3000 matches similar to: "two questions associated with heatmap"
2005 Oct 03
5
heatmap
Hi,
i created a graph with heatmap(sma) function:
heatmap(dataHeat(x))
and I wish to change the gradation of colors from blue to red, how could
i do?
Using "heatmap(dataHeat(x), col=c(2,4))" i will use only 2 colors
without gradation.
Ty so much
Andrea
2006 Oct 31
2
how to plot a data.frame?
hi,
i have a data frame like this:
0.3 0.7
0.4 0.8
i am trying to plot this data frame and each cell is filled with
different colors based on the value. Is there a function which can do
this?
thanks,
--
Weiwei Shi, Ph.D
Research Scientist
GeneGO, Inc.
"Did you always know?"
"No, I did not. But I believed..."
---Matrix III
2011 Oct 24
1
heatmap for plotting categorical matrix
Hi there,
I have a matrix like this:
> a4[1:20, 1:5]
194 211 294 314 315
GO:0000003 1 1 1 1 1
GO:0000072 0 0 0 0 0
GO:0000076 1 0 0 0 0
GO:0000082 1 3 1 1 1
GO:0000083 1 0 0 0 1
GO:0000086 0 1 0 1 1
GO:0000114 0 0 0 0 0
GO:0000115 0 0 0 0 0
GO:0000117 0 0 0 0 0
GO:0000160 0 0 1 0 0
2003 Apr 23
1
Text on a boxplot graph
Hi all,
Could anybody help me figure out how to write text on a boxplot. I have to
plot 9 boxplots side by side on a single graph. On the x-axis I write numeric
values with the 'names' argument but I'd like to add one label (character
value) in the middle of each box. I know how to use the text() function for
regular y~x plots but in this particular case, I'm kinda lost...
2007 Jun 25
3
a string to enviroment or function
Hi,
I am wondering how to make a function Fun to make the following work:
t0 <- (paste("hgu133a", "ENTREZID", sep=""))
xx <- as.list(Fun(t0)) # make it work like xx<-as.list(hgu133aENTREZID)
thanks,
--
Weiwei Shi, Ph.D
Research Scientist
GeneGO, Inc.
"Did you always know?"
"No, I did not. But I believed..."
---Matrix III
2007 Apr 11
5
how to reverse a list
Hi, there:
I am wondering if there is a quick way to "reverse" a list like this:
t0 <- list(a=1, b=1, c=2, d=1)
reverst t0 to t1
> t1
$`1`
[1] "a" "b" "d"
$`2`
[1] "c"
thanks.
--
Weiwei Shi, Ph.D
Research Scientist
GeneGO, Inc.
"Did you always know?"
"No, I did not. But I believed..."
---Matrix III
2007 May 01
1
dlda{supclust} 's output
Hi,
I am using dlda algorithm from supclust package and I am wondering if
the output can be a continuous probability instead of discrete class
label (zero or one) since it puts some restriction on convariance
matrix, compared with lda, while the latter can.
thanks,
--
Weiwei Shi, Ph.D
Research Scientist
GeneGO, Inc.
"Did you always know?"
"No, I did not. But I believed..."
2011 May 05
1
quantmod's addTA plotting functions
Hi,
I'm having trouble with quantmod's addTA plotting functions. They seem to
work fine when run from the command line. But when run inside a function,
only the last one run is visible. Here's an example.
test.addTA <- function(from = "2010-06-01") {
getSymbols("^GSPC", from = from)
GSPC.close <- GSPC[,"GSPC.Close"]
GSPC.EMA.3
2008 Sep 07
1
cohen's kappa
Dear all,
I have a question on Cohen's kappa:
Assume I have two datasets, one has 500 objects, 10 methods and the other,
1000 different objects, 20 different methods. Could I compare between the
two datasets to conclude the 10 methods are more "concordant" than the 20
ones by looking at some output, for example, cohen.kappa{concord} ?
One more, could anyone explain in brief,
2008 Aug 24
2
similarity between two gene lists with varied length
Dear listers,
a little off-topic:
I am looking for and compare algorithms which can calculate "distance" or
"similarity" between two gene lists with different lengths.
Any paper, any implementation in R and any suggestion is welcome!
Thanks,
--
Weiwei Shi, Ph.D
Research Scientist
GeneGO, Inc.
"Did you always know?"
"No, I did not. But I believed..."
2007 Oct 29
3
how to split data.frame by row?
hi,
if I have 20 x 3 data.frame, how to split it into
10 x 6 (moving the lower part of 10x3 to column)
or
5 x 12
thanks
--
Weiwei Shi, Ph.D
Research Scientist
GeneGO, Inc.
"Did you always know?"
"No, I did not. But I believed..."
---Matrix III
2006 Oct 17
4
cluster in R
hi,
is there some good summary on clustering methods in R? It seems there
are many packages involving it.
And I have two questions on clustering here:
1. Is there a way of evaluate the effecitives (or seperation) of
clustering (rather than by visualization)?
2. Is there a search method (like genetic search) which can help find
the best subset of attributes which gives best seperation?
Thanks,
2007 Apr 24
5
intersect more than two sets
Hi,
I searched the archives and did not find a good solution to that.
assume I have 10 sets and I want to have the common character elements of them.
how could i do that?
--
Weiwei Shi, Ph.D
Research Scientist
GeneGO, Inc.
"Did you always know?"
"No, I did not. But I believed..."
---Matrix III
2006 Dec 12
0
Re : Re : implementation of t.test
Excuses I have a mistake in previous mail
Type stats:::t.test.defaultThe formal way is to use getAnywhere(t.test)
Justin BEM
Elève Ingénieur Statisticien Economiste
BP 294 Yaoundé.
Tél (00237)9597295.
----- Message d'origine ----
De : justin bem <justin_bem@yahoo.fr>
À : Weiwei Shi <helprhelp@gmail.com>
Cc : R-help@stat.math.ethz.ch
Envoyé le : Mardi, 12 Décembre 2006,
2009 Jul 13
2
how to keep row name if there is only one row selected from a data frame
Hi, there:
Assume I have a dataframe with rownames like A with rownames like a to e,
> A
[,1] [,2]
a 1 6
b 2 7
c 3 8
d 4 9
e 5 10
when I use A[1,], I lost the rowname for it, like below. How could I keep
it? Is there an easy way instead that I have to modify by myself after I
used A[1,] manually.
> A[1,]
[1] 1 6
Thanks,
W.
--
Weiwei Shi, Ph.D
Research
2007 Jun 18
3
source a specific function
Dear Listers:
For example, if I have a .R source file which has more than one
function, and I want to just load only one of the functions, how could
I do that? (removing the rest after sourcing is not what I intend b/c
in my workspace, I might have some of the rest and I don't want to
change my workspace: i.e., I only change my workspace by adding one
function from a R source file).
Thanks,
2007 Jun 25
4
how to plot this?
Hi, there:
Suppose I have a couple of data.frames and each one has five columns
(one for x-axis, two for y-axis and two for std of y's.) There is
another dimensions (besides x and y) which is continuous. My question
is, how to plot such series of data frames in one plot (thus,
3-dimensional plot) AND multiple 2-D plots. I am not familar with R's
plotting utilities.
Thanks.
--
Weiwei
2006 Oct 25
2
write a help file for my own function
Hi,
I am wondering how I can write a help page for my own function so when
I type ?myOwnfunc, then the help page will show up?
thanks.
--
Weiwei Shi, Ph.D
Research Scientist
GeneGO, Inc.
"Did you always know?"
"No, I did not. But I believed..."
---Matrix III
2006 Nov 06
1
colnames and get means for the columns with the "same" names
hi,
I have a conversion table for colnames like this:
Probe_ID HUMAN_LLID
1 AF106325_PROBE1 7052
2 NM_019386_PROBE1 7052
3 NM_012907_PROBE1 339
4 AW917796_PROBE1 84196
5 L27651_PROBE1 10864
The Probe_ID contains a list of colnames for another data.frame, say x1.
I need to convert such colnames to another ID's system, HUMAN_LLID by
using the table.
2006 Nov 14
2
how to check a R object's property
Hi,
I am writing a generic function and need to check if an arg is a data
frame or not. I could use
is.null(dim(x)) to get what i want. But i want to know if there is a
function which can tell me whether it is a list, a numeric vector, a
data frame, a factor and so on. Can R do that?
thanks.
--
Weiwei Shi, Ph.D
Research Scientist
GeneGO, Inc.
"Did you always know?"
"No, I did