as_data_frame {structToolbox}R Documentation

Convert to data.frame

Description

Convert the outputs of the input model into a data.frame.

Usage

## S4 method for signature 'filter_na_count'
as_data_frame(M)

## S4 method for signature 'ttest'
as_data_frame(M)

## S4 method for signature 'wilcox_test'
as_data_frame(M)

Arguments

M

a model object

Value

A data.frame of model outputs

Examples

D = iris_DatasetExperiment()
M = filter_na_count(threshold=50,factor_name='Species')
M= model_apply(M,D)
df = as_data_frame(M)

[Package structToolbox version 1.5.7 Index]