CountsToDrawing: Makes a vector of a abundance dataframe

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/CountsToDrawing.R

Description

Makes a vector with each date stored in it as many times as there were observations.

Usage

1

Arguments

data

data.frame; abundance data, with one column of date objects and one with numeric values.

CheckData

logical; If TRUE the function will check the data input whether it fits the requirements using the CheckData function. If FALSE it will process without, which might result in wrong results so to use the default value (TRUE) is strongly recommended.

Details

Makes a vector with each date stored in it as many times as there were observations.

Value

A vector where each date in the input data.frame is stored in as many times as there are counts in the same row in the numeric column.

Author(s)

Florian Berger <florian_berger@ymail.com>

See Also

scale

Examples

1
2
3
4
5
a     <- c(1:10)
dates <- as.Date(a, origin = '2017-01-01')
count <- c(1,1,3,4,6,9,5,4,2,1)
dat   <- data.frame(dates, count)
CountsToDrawing(dat)

biometry/phenologicalOverlap documentation built on May 21, 2019, 2:31 a.m.