Displaying 4 results from an estimated 4 matches for "profondeur".
2012 Oct 04
4
Class for time series
Dear all,
I have a time serie dataset such as the following with data acquired
every 15 minutes:
Date Heure Profondeur Temp?rature Salinit? Turbidit? Chloration
1 2012-07-06 08:47:22 -0.144 22.469 0.011 0.000 0
2 2012-07-06 09:02:21 -0.147 22.476 0.011 0.000 0
3 2012-07-06 09:17:21 -0.139 22.498 0.011 19.323 0
4 2012-07-06 09:32:21 -0.136 22.54...
2004 Sep 09
1
Indexing dataframe
...s:
> names(d2004)
[1] "Localite" "Date" "parcelle" "maille"
"presence.plant" "concentration" "stade.culture"
[8] "stade" "Trou" "Horizon" "Profondeur"
> d2004 <- d2004[, -c(6, 8)]
but I'd like to use column names (to avoid finding column numbers each
time).
I cannot find an easy way to operate...
I wonder why that works:
> d2004[, "concentration"]
and this don't:
> d2004 <- d2004[, -c("concentratio...
2004 Sep 09
0
AW: Indexing dataframe
...)
>
> [1] "Localite" "Date" "parcelle" "maille"
> "presence.plant" "concentration" "stade.culture"
> [8] "stade" "Trou" "Horizon" "Profondeur"
>
> > d2004 <- d2004[, -c(6, 8)]
>
> but I'd like to use column names (to avoid finding column
> numbers each time).
>
> I cannot find an easy way to operate...
>
> I wonder why that works:
> > d2004[, "concentration"]
>
> and t...
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