Displaying 20 results from an estimated 10000 matches similar to: "Select only cases with negative values"
2011 Jan 10
4
Meaning of pterms in survreg object?
I am trying to model survival data with a Weibull distribution
using survreg. Units are clustered two apiece, sometimes receiving
the same treatment and sometimes opposing treatment.
2010 Jun 17
3
ask a question about data sets element
for example, I have
a1=c(1,3,5)
a2=c(2,4,6)
a3=c(7,8)
a4=c(9,10)
now if I have i=5, so i in a1, then I get a feedback tag[5]=1
i=8, so i in a3, then can get tag[8]=3
in there any function to do this to check the element belongs to which
group?
thank you!!!
[[alternative HTML version deleted]]
2008 Jul 13
3
initialize a factor vector
What is the least surprising way of initializing a factor with
predefined levels and with length 0?
as.factor(c("eins", "zwei", "drei"))[FALSE]
does the job but looks a bit weird.
--
Johannes H?sing There is something fascinating about science.
One gets such wholesale returns of conjecture
mailto:johannes at
2010 Oct 25
2
Text wrapping in R
I am about to give an introduction to R to some clinical data managers
used to SAS. There is already a lot of material in printed form and
on the web that paves the way. What I haven't found so far are text
wrapping capabilities in setting tables in raw text as in SAS PROC
REPORT.
At the moment i would direct them at producing HTML output from R
and pipe the result through lynx. Coming from
2010 Sep 30
2
Sweave and LaTeX beamer class
I am failing to uncover Sweave chunks step by step using the LaTeX beamer
class.
The following minimal example:
\documentclass{beamer}
\usepackage{Sweave}
\begin{document}
\begin{frame}[fragile]
In the year \uncover<2->{25}\uncover<3->{\Sexpr{5*5}}
\uncover<4->{
<<echo=TRUE, print=TRUE>>=
5*5*101
@
}
\end{frame}
\end{document}
leads to an error message when
2004 Jul 29
3
Help w/ matrix calc
Dear All,
Help is needed! I have a matrix with frequencies of fish larvae per length
class (var. sl) and age-group (var. median.no) obtained with
>k<-table(cut(sl,(5:22)),median.no)
>k[2:5,1:5] #to ilustrate k
4 5 6 7
(6,7] 3 1 0 0
(7,8] 3 0 1 0
(8,9] 3 4 3 5
(9,10] 3 15 7 13
from this matrix I would like to obtain the mean age per length class i.e.
2009 Mar 21
1
libRlapack.so not found
Whenever I try to load the Matrix package, I get the following error
message:
libRlapack.so: cannot open shared object file: No such file or directory
A file with that name is indeed not on the hard disk.
I am using the R version which comes with Ubuntu Hardy Heron LTS. Here
is the output of R.Version():
R.Version()
$platform
[1] "i486-pc-linux-gnu"
$arch
[1] "i486"
$os
[1]
2008 Jul 27
4
Object-oriented programming in R for Java programmers?
Hi,
I was wondering if anybody might have a reference for
me: My R code is growing and getting more and more
confusing. Thus, I figure it's time to switch to
object-oriented again. I have done oo programming in
C++ and Java before but the first few tutorial on R oo
were a bit confusing for me.
Is there any brief tutorial on oo programming in R
especially for people who have done oo in Java
2008 May 01
2
regular expression question
I have strings of the form
TICKER.GGG.XXXXXX.dat
but GGG is not always three characters so I can't use substr to pull it
out of the string.
Could someone tell me how to use sub to pull out the GGG but more
generally the string between the dot after the R in TICKER and the next
dot. I still don't have a very good understanding of regular
expressions but I'm trying to get that
2010 Jun 28
6
Basic question - more efficient method than loop?
I'm guessing there's a more efficient way to do the following using the index
features of R. Appreciate any thoughts....
for (i in 1:nrow(dbs1)){
if(dbs1$Payor[i] %in% Payor.Group.Medicaid) dbs1$Payor.Group[i] =
"Medicaid"
if(dbs1$Payor[i] %in% Payor.Group.Medicare) dbs1$Payor.Group[i] =
"Medicare"
if(dbs1$Payor[i] %in% Payor.Group.Commercial)
2009 Apr 26
2
Help to select the raw in a data.frame with the max value
Dear User,
thank for the attention. I have a data.frame with 5 columns (ex:ID,
a1,a2,a3,a4) and 1000 rows. I wish to find the absolute max value for all
data.frame and save a new data.frame with the row where is that value. Ex:
ID: 1,2,3,4,5,6,7,8,9,10
a1:1,2,3,4,5,6,7,8,9,10
a2:11,12,13,14,15,16,17,18,19,20
a3:21,22,23,24,25,26,27,28,29,30
a4:31,32,33,34,35,36,37,38,39,40
The
2010 Feb 10
3
Novel (Maybe?) Visualizations
I'm interested in using R's plotting capabilities to try to generate a graph showing the relationship/pairing frequency of words appearing in a block of unstructured text. I don't have a specific algorithm or approach in mind, just looking to portray text in an interesting fashion. The output I'm hoping for is something like the following called a "Phrase Network":
2005 Mar 17
2
R equivalent to funcall?
Dear all,
I have a list of time series and want to plot them.
Is there a way that the dot-dot-dot argument of a
function accepts a list as single arguments, such
as funcall in several Lisp dialects?
Greetings
Johannes
2008 Oct 14
3
AIC score
Hello,
I ran AIC for some competing models I created. I get df and an AIC score
from the AIC procedure. Can I use the models with the lowest AIC scores from
this procedure to choose my 'best' models? If not, what else do I need to do
(and know) and how can I do it in R to chose the 'best' models?
Thank you kindly,
Michael
[[alternative HTML version deleted]]
2009 Mar 22
4
Selecting closest values
Hi
I have a table with ID (1 to 183) and Location (144 to -22).
My problem is that I want to select the 10 ID's that are closest in Location
to ID 1, ID 2 and so on.
Also, some ID have the same Location. Say, if 11 ID's are closest to ID 100
I want to randomly choose one of the ID's to select 10 ID's total.
Thank you
--
View this message in context:
2008 Oct 08
1
Choose subset for plot use (bwplot)
Hello, this code below was from a helpful R-help user.
dat <- read.csv("Resid_fix2.csv", sep="," , header=T)
dat11 <- dat[1:413,]
# convert ambiguous columns to factors:
dat11$Pri_No <- factor(dat11$Pri_No)
dat11$RecovUnit <- factor(dat11$RecovUnit)
# plot:
require(lattice)
bwplot(bbED~ Pri_No | RecovUnit, data=dat11, as.table=TRUE, layout=c(4,1))
This works,
2006 May 23
3
Manipulating code?
Dear expeRts,
I am currently struggling with the problem of finding
cut points for a set of stimulus variables. I would like
to obtain cut points iteratively for each variable by
re-applying a dichotomised variable in the model and then
recalculate it. I planned to have fixed names for the
dichotomised variables so I could use the same syntax
for every recalculation of the whole model. I
2008 Dec 04
1
Formula parsing and updating
Hi all,
I can't come over a problem with formula. Suppose I have a coxmod model
with the following formula:
> somemod$formula
Surv(lebzeit, tot == 1) ~ sex + (alter >= 65) + diff3k + zelltyp_k_c +
q_nuc_3k + kar_k80_g80 + stadium
and I want to drop the stadium explanatory variable from the model with
> update(somemod, ". ~ . - stadium")
I get the following messages:
2008 Jan 11
3
Randomization tests, grouped data
The other day I was looking into one of the classics in resampling,
Eugene Edgington's "Randomization Tests". This type of test is simple
to do in R with things like a simple correlation, the sample ()
function is perfect for the purpose.
However, things are more complex if you have grouped data, like a
one-way ANOVA. The reason is that you have to avoid the consideration
of
2009 Jan 09
7
AT&T Researchers and the New York Times
Is anyone in the leadership of the R-project going to contact the New
York Times and clarify that the article gave remarkably short shrift
to the people who designed the user interface for R, to a large extent
AT&T researchers from an earlier generation? It would be the
appropriate thing to do.
The R team did not develop the user interface for R, the designers of
the S programming language