View source: R/describe_nested_df.R
describe_nested_df | R Documentation |
This function compute descriptive statistics on a nested dataframe and create 3 new columns containing: 1) descriptive statistics using the function my_summ_stat_func()
, 2) outliers and extreme values and 3) qqplot to visulaize normality.
describe_nested_df( nested_df, targed_dataset = "data", faceted_by_1 = "Condition", faceted_by_2 = "." )
nested_df |
A nested dataset. Ideally, previously grouped by the paramters of interes to be analyzed. Eg. wave frequency, wave latency, amplitude, etc. |
targed_dataset |
Character. the column name of the dataset to perform the summary. By default uses the colum named |
faceted_by_1 |
A string. Grouping variables for visualization. Default to |
faceted_by_2 |
A string. Aditional grouping variables for visualization. Default to |
A nested dataframe with the additional columns: "Described", "outliers" and "qqplots" for the given input dataframe.
# the example is missing
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.