round_columns | R Documentation |
Round Columns
round_columns(df)
df |
Aggregated data frame. |
Internal function to round columns based on column names or variability of data in column.
Epochs or events data frame with rounded columns.
epochs_df <- data.frame(
"x.mean" = c(0.1111, 0.1222, 0.1333, 0.1444),
"y.mean" = c(0.2111, 0.2222, 0.2333, 0.2444),
"light.mean" = c(1.25, 1.73, 1.99, 2.02)
)
epochs_df <- round_columns(epochs_df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.