Description Usage Arguments Value Examples
Compute F statistic from H1 and H0 model characteristics
1 | computeFstat(h0_df, h1_df)
|
h0_df |
data frame with H0 model characteristics for each protein |
h1_df |
data frame with H1 model characteristics for each protein |
data frame with H0 and H1 model characteristics for each protein and respectively computed F statistics
1 2 3 4 5 6 7 8 9 10 11 | data("simulated_cell_extract_df")
temp_df <- simulated_cell_extract_df %>%
filter(clustername %in% paste0("protein", 1:20)) %>%
group_by(representative) %>%
mutate(nObs = n()) %>%
ungroup
h0_df <- fitH0Model(temp_df)
h1_df <- fitH1Model(temp_df)
computeFstat(h0_df, h1_df)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.