Displaying 15 results from an estimated 15 matches similar to: "Data Frame Column Name Attribute"
2011 May 03
6
Simple loop
Hello everybody,
I am beginning with loops and functions and would be glad to have help in
the following question:
If i have a dataframe like this
Site Prof H
1 1 24
1 1 16
1 1 67
1 2 23
1 2 56
1 2 45
2 1 67
2 1 46
And I would like to create a new column that subtracts the minimum of H from
H, but for S1 and P1
only
2005 Jun 28
1
Using data frames for EDA: Insert, Change name, delete columns? (Newcomer's question)
I am finding complex analyses easier than some elementary operations in
R. In particular I want to do some low level exploratory data analyses
with data in a data frame but cannot find commands to easily insert,
remove (delete), rename, and re-order (arbitrarily, not sort) columns.
I see that the micEcon package has an insertCol command, but that is for
matrices, not data frames. I have looked
2010 Oct 25
4
zoo.read intraday data
Hello all,
I'm trying to use zoo.read but can't figure out
how to deal with the time format. (example below)
would be nice if someone could help.
best regards,
Immanuel
---------------------------
L <- "Date,Time,Open,High,Low,Close,Up,Down
05.02.2001,00:30,421.20,421.20,421.20,421.20,11,0
05.02.2001,01:30,421.20,421.40,421.20,421.40,7,0
2004 Aug 26
4
Column names of a data frame
I'm coming out with all the classic problems today ;-)
Can anyone tell me how to change the column names of an already existing
data frame? I've read the docs for ?data.frame and ?as.data.frame but
can't figure it out.
I want to make a new data.frame from some of the columns of an existing
data.frame, but when I do that, the new data.frame columns have the same
names as the old
2013 Feb 03
1
Adding complex new columns to data frame depending on existing column
Hello
I have a data frame as below
V1 V2 V3 V4 V5 V6
chr1 18884 C CAAAA 2 0
chr1 135419 TATACA T 2 0
chr1 332045 T TTG 0 2
chr1 453838 T TAC 2 0
chr1 567652 T TG 1 0
chr1 602541 TTTA T 2 0
on which I want to perform complex rearrangement such that:
if V3 is a string >1 (i.e line 2) then I
2001 Apr 30
0
Rgui 1.2.3 for Windows crashes reading huge CSV file (PR#927)
Full_Name: M. Edward Borasky
Version: 1.2.3 (2001-04-26)
OS: Windows 2000
Submission from: (NULL) (206.98.121.224)
I have a Celeron with 192 MB of RAM. My paging file is 288 MB, which is the
Windows recommended size. Here's the starting screen:
--------------------------------------------------------------------------------
R : Copyright 2001, The R Development Core Team
Version 1.2.3
2009 Sep 02
0
Xen nativo
Galera, boa tarde.Tô numa briga comigo mesmo tentando responder o seguinte:
necessariamente preciso do linux instalado pra depois instalar o XEN ? Não
posso usar um .ISO e já instalar o XEN direto ? Algum material que me mostre
mais sobre esse assunto ?
Obrigado desde já pela ajuda.
Abraço. José
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
2007 Aug 22
0
Wrapper Subset Selection
Hello --
Is there any R function that implements Wrapper Subset Selection method? I am using 'leaps' package, and I do not know if 'leaps' works better than Wrapper.
Thanks,
Vu
2006 Oct 19
0
[HVM][SVM][PATCH][1/2] VINTR intercept signal
These two patches affect the interrupt injection logic for AMD-V (only).
These patches fix issues with Windows HVM guests during boot menu
screen:
1) the timer countdown is no longer very slow
2) kbd response is now no longer slow or non-existent
We have also seen an occasional "dma lost interrupt"/expiry errors, and
these patches seem to help with these, especially with SUSE10 HVM
2004 Mar 26
1
Standard procedure for changing smb.conf
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
What is the standard procedure for making edits of smb.conf take hold?
For example, what I'm seeing is a share that has given R/W access to a
user named Tom, when I change Tom to read only, he is still able to
write to that share until I stop Samba and restart it.
The documentation seems to refer to a 1 minute reread of smb.conf, but I
don't
2008 Jul 20
2
SYSLINUX 3.71-pre15: release candidate
Hi all,
I just pushed out SYSLINUX 3.71-pre15. This version officially begins
the release candidate stage of SYSLINUX 3.71. To be honest, I'm a bit
baffled that the numbers got that high for what has always been intended
as a maintenance/bugfix release, but those 15 prereleases only
correspond to 55 commits total, so I guess it's really not that much.
-hpa
2000 Jun 24
1
Garbage Collecting
Dear all,
Me and the Garbage Collector doesn't understand each other...
I'm on R-1.0.1 (I have requested an upgrade to the right local people), an
osf1 system with an alphaev6 CPU. I have fair amounts of memory to use,
but it seems to be used up pretty fast nevertheless.
I'm now trying to see what the garbage collector does, I have inserted a
gc(v=T)
call at a spot in my code.
I
2003 Oct 03
2
Ascom Ascotel 2050 & Fritz PCI Card (Capi)
Hello,
We have been trying to add asterisk to our Ascom Ascotel 2050 PBX. We have
a AVM Fritz!PCI Card connected to an S0 bus extension from the PBX. The
fritz card is configured to use chan_capi, and we can make calls SIP->SIP
SIP->PBX extension PBX extension->SIP all successfully, we have assigned
more than one PBX extension number to the S0 port in the Ascom PBX (it has
8 positions)
2007 Dec 09
8
zpool kernel panics.
Hi Folks,
I''ve got a 3.9 Tb zpool, and it is casing kernel panics on my Solaris
10 280r (SPARC) server.
The message I get on panic is this:
panic[cpu1]/thread=2a100a95cc0: zfs: freeing free segment
(offset=423713792 size=1024)
This seems to come about when the zpool is being used or being
scrubbed - about twice a day at the moment. After the reboot, the
scrub seems to have
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame.
For instance
> ddTable <-
data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry"))
I want a dataset that is
Id Name
1 Paul
2 Bob
> unique(ddTable)
Will give me all 4 rows, and
> unique(ddTable$Id)
Will give me c(1,2), but not accompanied by the name column.