Description Usage Arguments Value Examples
View source: R/firstsMeasurements.R
this function generates a field "primeiraMedicao" that contains the lowest age for each item in the group both derived from dtFrame
1 | firstsMeasurements(dtFrame, group = "parcela", age = "idadearred")
|
dtFrame |
It is the database that contains the data |
group |
is the field that represents the groups default parcela |
age |
default idadearred is the name of field containing the values of the group |
data.frame dtFrame with the field "primeiraMedicao"
1 2 3 4 | dtf = data.frame(
grupo = c(1,2,3,4,1,2,3,4),
medicoes= c(10,20,30,40,5,30,1,52))
firstsMeasurements(dtf, group = "grupo", age = "medicoes")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.