Displaying 11 results from an estimated 11 matches similar to: "Class for time series"
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
2018 Nov 01
5
Internal DNS migrate to Bind9_DLZ
Hai,
> >
> > have rejoined all my DC's with new names, see below.
> >;; ANSWER SECTION:
> ><domain>.corp. 3600 IN NS psad101zatcrh.<domain>.corp. -> New
> >rebuild, new hostname, RHEL6 to RHEL7 upgrade
....
> >
> > Led me to believe this is your problem. However, you say it works on
> > one DC, but not with multiple
2016 Dec 20
2
colnames for data.frame could be greatly improved
Hello,
colnames seems to be not optimized well for data.frame. It escapes
processing for data.frame in
if (is.data.frame(x) && do.NULL)
return(names(x))
but only when do.NULL true. This makes huge difference when do.NULL
false. Minimal edit to `colnames`:
if (is.data.frame(x)) {
nm <- names(x)
if (do.NULL || !is.null(nm))
return(nm)
else
2013 Apr 22
7
Multiple lon lat points in the map with ggplot2
Hello R users,
For the last few days I am struggling with the following task:
my data.frame:
A1 A2 A3 B1 B2
B3
58.81 53.292 54.501 13.013 17.39 19.407 56.02 56.251 54.033 20.099 13.15
10.411 55.376 53.099 57.625 13.396 21.031 13.22 58.584 53.194 54.218
13.038 16.854 19.289 55.7 55.921 53.847 19.942 13.153 9.828 55.093 52.934
2004 Sep 09
1
Indexing dataframe
I am sorry to ask such question, but I can't find a solution...
I have a dataframe 'd2004' and I want to remove two columns:
'd2004$concentration' and 'd2004$stade".
I could do it just as follows:
> names(d2004)
[1] "Localite" "Date" "parcelle" "maille"
"presence.plant"
2004 Sep 09
0
AW: Indexing dataframe
Hi,
Use
Newdata <- subset(d2004, select=-c(concentration,stade))
See ?subset for details
Best,
Matthias
> -----Urspr??ngliche Nachricht-----
> Von: Jacques VESLOT [mailto:jacques.veslot at cirad.fr]
> Gesendet: Donnerstag, 09. September 2004 12:38
> An: r-help at stat.math.ethz.ch
> Betreff: [R] Indexing dataframe
>
>
> I am sorry to ask such question, but I
2008 Mar 13
3
zoo object: replace NAs from another zoo object
Hello,
I have two zoo objects, new and old, indexed by chron objects. Their structure is like this:
(05/25/06 00:00:00) NA NA NA
(05/25/06 00:02:00) 948.20 24.198 0
(05/25/06 00:04:00) 948.26 20.640 0
(05/25/06 00:06:00) 948.37 19.653 0
(05/25/06 00:08:00) 948.48 19.135 0
(05/25/06 00:10:00) 948.54 22.510 0
(05/25/06 00:12:00) 948.55 27.175 0
(05/25/06 00:14:00) 948.46
2019 Jan 16
0
Internal DNS migrate to Bind9_DLZ
Hello Roland/Louis & All,
All the best for the new year.
Sorry to bring this up again.
I finally managed to give some more attention to this issue of mine.
I've set up a new test domain server, and I managed to seamless migrate
from SAMBA_INTERNAL to BIND9_DLZ and the other way again.
With a little help of new software we purchased, I exported all data from
production and imported the
2013 Aug 26
4
transform variables
Dear all!
I have a data frame composed by 13 columns (year, and 12 months). I want to
transform this data base in another like this
year month values
1901 1
1901 2
1901 3
.....
1901 12
1902 1
1902 2
....
1902 12
Is there a possibility to succeed that in R?
Thank you!
best regards!
CR
--
---
Catalin-Constantin ROIBU
Lecturer PhD, Forestry engineer
Forestry Faculty of Suceava
Str.
2009 Apr 14
3
scatterplot3d
Dear R-help,
I am having trouble with your scatterplot3d program. For help with this
problem I was directed to your address by Martin Maechler at "
r-core-bounces at r-project.org." I'm also sending a CC to "
r-core-owner at r-project.org" as I'm not yet certain of the proper address to
use for this.
I have R version 2.8.1 and have downloaded 'scatterplot3d.'
2016 Dec 27
0
colnames for data.frame could be greatly improved
Hi there,
Any update on this?
Should I create bugzilla ticket and submit patch?
Regards
Jan Gorecki
On 20 December 2016 at 01:27, Jan Gorecki <J.Gorecki at wit.edu.pl> wrote:
> Hello,
>
> colnames seems to be not optimized well for data.frame. It escapes
> processing for data.frame in
>
> if (is.data.frame(x) && do.NULL)
> return(names(x))
>
> but