summarize.panel | R Documentation |
Provides summary statistics for panel data, including the total number of records, the count of unique subjects, average records per subject, total and maximum follow-up time. This summary is essential for understanding the dataset's structure and the extent of data available for each subject.
summarize.panel(dat, id.name, t1.name, t2.name, grouping.variables = NULL)
dat |
A data frame structured as panel data. |
id.name |
The character name of the identifying variable within dat, used to track subjects across multiple rows of data. |
t1.name |
The character name of the time variable within dat representing the start (left endpoint) of observation intervals. |
t2.name |
The character name of the time variable within dat representing the end (right endpoint) of observation intervals. |
grouping.variables |
A character vector of variable names from dat for grouping the resulting summary statistics. If NULL, summary statistics are computed for the entire dataset. |
Returns a data.table with summary statistics for the panel data, grouped by the specified grouping variables (if provided). The summary includes the total number of records (total.records), the number of unique subjects (unique.ids), average number of records per subject (mean.records.per.id), total follow-up time (total.followup), and the maximum follow-up time (max.followup) for each group. This summary provides a comprehensive overview of the data's coverage and depth, aiding in its interpretation and the planning of subsequent analyses.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.