Displaying 20 results from an estimated 73 matches for "fram".
Did you mean:
frame
2007 Jul 08
1
generating a data frame with a subset from another data frame
R gurus,
I have a data set that looks something like this:
Site Species DBH #Vines
G PLOC 45.9 4
G ACNE 23.3 1
G ACNE 12.0 0
G FRAM 35.9 5
G AEGL 11.2 2
N PLOC 77.3 12
N JUNI 78.6 7
N ACNE 18.9 1
N ACNE 15.7 3
N ACRU 35.5 4
H ACSA2 24.1 6
H ULAM 35.2 7
There are 730 individual trees (22 species) from four sites in the
actual data set. I would like to create a second data frame that
contains just the most common species (m...
2011 Jul 12
3
Reorganize data fram
Hi,
I have a data frame of about 700 000 rows which look something like this:
Date Temperature Category
2007102 16 A
2007102 17 B
2007102 18 C
but need it to be:
Date TemperatureA TemperatureB TemperatureC
2007102 16...
2012 Jun 22
4
Search list of elements for a specific pattern
Hi,
I have a list of mutations, called "mutList", of the form:
> head(mutList)
Alu
1 AluJ
2 AluJ/F(R)AM
3 AluJ/FLAM
4 AluJ/FRAM
5 AluJ/monomer
6 AluJb
It contains about 500 elements and not all of them contain the
sequence "Alu". I tried using this code:
Alu<-mutList[which(grep("Alu",mutList)==1)]
But that simply returned all of them elements in the list. Is there a
way to modify the list...
2008 Jul 02
2
Accessing a field in a data fram
...o, but this will depending on
the string. Let's say that the string is decision<-"one". How would I access
raw$one?
The following doesn't work:
numbers<-raw$decision
Please help me!
Thanks!
--
View this message in context: http://www.nabble.com/Accessing-a-field-in-a-data-fram-tp18244661p18244661.html
Sent from the R help mailing list archive at Nabble.com.
2012 Apr 01
1
indexing in a function doesn't work?
Hello,
I've written a small function that's supposed to save me some time, and
it's ending up killing it- the intention is to iteratively subset a dataset
fram on framevec, fit a model (either lm or nls depending on type) and
return the r2 or AIC from the model, respectively. Although as far as I can
tell in my code the plots are dependent on the fit of the model to the data
and the r2 and AIC reported are also dependent on the re-fitted model, the
plots...
2005 Sep 16
1
De-data.fram-ize?
Dear useRs,
Is there any more elegant way to convert dataframe to a vector of all
its values than as.vector(as.matrix(x)) ? I did not have to do such
conversion yet, so I am not sure... (of course as.vector() alone does
not work).
Regards,
--
Lukasz Komsta
Department of Medicinal Chemistry
Medical University of Lublin
Jaczewskiego 4, 20-090 Lublin, Pola...
2007 May 11
1
conditional across frames of a data fram
I'm a newbie, so please forgive me:
I have a data frame that includes two long columns of x and y coordinate
values thusly:
... ... ... x y ... ...
... ... ... 115 127 ... ...
... ... ... 120 129 ... ...
... ... ... 0 0 ... ...
... ... ... 135 162 .... ...
ect...
i need to ask R tell me how...
2002 Sep 03
1
about fram buffer & twm cursor!!
Dear all,
I have two questions under syslinux.
First. When I start the system with syslinux, some messages
display on the screen and want me to enter display mode
to show or enter "scan" the scan the display resolution.
If I made anything wrong?
Second. I used the same kernel image as above and different cpu
care(SBC), It can work perfectly
2013 Feb 16
6
Extracting Numeric Columns from Data Fram
Hello,
I've got a data frame with a mix of numeric, integer and factor columns.
I'd like to pull out (or just operate only on) the numeric/integer columns.
Every thing I've found in searches is about how to subset by rows,
or how to operate assuming you have the column names. I'd like to pull
by type.
Thanks!
B...
2007 Jul 02
4
Extracting sums for individual factors in data frames
I have a data frame with two columns, one of which is a factor
(Species) and the other is numeric (BA, which stands for basal
area). Here's a sample:
Species BA
ACSA 55.7632696
FRAM 122.9933524
ACSA 67.54424205
ACSA 89.22123136
ACSA 82.46680716
ACSA 22.46238747
ACSA 19.94911335
ACSA 20.42035225
ACSA 19.006...
2005 Feb 11
2
Notes on bug reports 3229 and 3242 - as.matrix.data.fram e
...regor
>
> ! Look after character !
>
> From: Prof Brian Ripley [mailto:ripley@stats.ox.ac.uk]
> You too have not give an reproducible example!
> ! Yes, I was not able to do it from my data. But bellow is one. It is
> ! a stupid one, but it works. The problem is use of as.data.frame in
> ! tmp1$L <- as.data.frame(tmp$L). This looks like to produce
> a corrupted
> ! data.frame. If I use just tmp1$L <- tmp$L, write.table and
> ! as.matrix.data.frame works OK. I still think that mine proposal can
> ! give benefit, since it works also on corrupted data fra...
2004 Sep 28
4
An index of all possible combinations of variables in a data fram e
Hello list
Does anybody know of any way to create an index of all the possible
combinations of variables (factors) in a data frame? ie for 3 factors A, B &
C we have
A
B
C
AB
AC
BC
ABC
which equates to columns 1, 2, 3, 1:2, (1,3), 2:3 and 1:3.
I realise that a function like model.matrix does this, but how to get the
seqence of the index?
Any help would be greatly appreciated.
Regards
Alan Simpson
Roberts Rese...
2010 Jul 19
3
specifying column names in a vector of characters and the use?
Hi,
What I would like to do is have a data.frame with column names and have
these column names stored as strings in another vector. Then I would like
to be able to access the data.fram columns via referencing the vector of
names. The code below shows the last few executions that failed to retrieve
the values for column named X1. Seth
> t...
2010 Dec 31
2
Class "coef.mer" into a data.frame?
Hello,
Could somebody please tell me what am I doing wrong in following?
I try extract coefficients (using arm-package) from the lmer
frunction, but I get the
following warning:
a<-data.frame(coef(res))
Error in as.data.frame.default(x[[i]], optional = TRUE,
stringsAsFactors = stringsAsFactors) :
cannot coerce class "coef.mer" into a data.fram
I think I have done it before the same way and it has worked, but not
any more..
Jukka
2009 Apr 09
5
data.fram zero's
Hi all,
A simple question which I don???t seem to be able to solve:
I want to make a data.frame of 360 rows and 94228 column with only zero???s
without having to type all these zero???s ;-)
What is the easiest method?
Thanks,
Naomi
Disclaimer: De informatie opgenomen in dit bericht (en bijlagen) kan
vertrouwelijk zijn en is uitsluitend bestemd voor de ge...
2006 Apr 26
2
help in R
...elds for ids, sex and affection status
>
> ###form gntp using the two alleles of each SNP
> allele1 <- snp.dat[,seq(1,2*n.snp,2)+n.id ]
> allele2 <- snp.dat[,seq(2,2*n.snp,2)+n.id ]
> temp <- matrix(paste(allele1,allele2,sep="|"),dim(allele1))
> temp <- data.frame(temp)
> convt <- function(x) x <- factor(as.character(x),exclude="0|0")
>
> gntp <- as.data.frame(lapply(temp,convt))
>
> ###create new snp data with ids and gntp only
> names(gntp) <- snp.name
> ids <- as.data.frame(snp.dat[,1:n.id])
> names(ids)...
2012 May 07
2
how to deduplicate records, e.g. using melt() and cast()
...learly what i have and what i'm
trying to convert it to. But i'm just not getting it, ?cast that is! So
i'd really appreciate some ones patience to clarify this, using the
reshape package, or any other approach.
With sincere thanks in advance,
Karl
## Runnable example
## The data.frame i have:
library("reshape")
my.df <- data.frame(pathway = c(rep("pw.A", 2), rep("pw.B", 3),
rep("pw.C", 1)),
cond.one = c(0.5, NA, 0.4, NA, NA, NA),
cond.two = c(NA, 0.6, NA, 0.9, NA, 0.2),
cond....
2009 Jun 15
1
[LLVMdev] VmKit Question.
Hi,
I compiled VmKit and got it running, but do not know how it is possible to
emit llvm-bitcode fram .java code. Would you please help me?
Thanks,
::Saman
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090615/79240d35/attachment.html>
2000 Dec 20
1
Question about coplot() ...
...731 0.313 2
2 739 0.340 2
3 790 0.373 2
4 855 0.451 2
5 980 0.608 2
6 575 0.156 1
7 608 0.207 1
8 630 0.249 1
9 670 0.332 1
10 838 0.377 1
11 964 0.466 1
> coplot(y ~ x|i, data=xy)
coplot gives 3 panels, rather than 2, namely one for i=1 and one for
i=2.
Futhermore, when I extand data fram xy to have i=3 as follows:
> xy
x y i
1 334 0.129 3
2 365 0.198 3
3 411 0.223 3
4 731 0.313 2
5 739 0.340 2
6 790 0.373 2
7 855 0.451 2
8 980 0.608 2
9 575 0.156 1
10 608 0.207 1
11 630 0.249 1
12 670 0.332 1
13 838 0.377 1
14 964 0.466 1
> coplot(y ~ x | i, data=xy)
gives...
2006 Apr 06
1
reshape question
Hi,
I have a data fram like this:
date column1 column2 column3 value1 value2 value3
1-1 A B C 10 5 2
2-1 A B D 5 2 0
3-1 A B E 17 10 7
How can I reshape it to:
date column1 column2 column3 v x
1-1 A B C value1 10
1-1 A B C value2 5
1-1 A B C value3 2
2-1 A B D value1 5
2-1 A B D value2 2
2-1 A B D value3 0
3-1 A B E v...