computeFstat: Compute F statistic from H1 and H0 model characteristics

Description Usage Arguments Value Examples

Description

Compute F statistic from H1 and H0 model characteristics

Usage

1
computeFstat(h0_df, h1_df)

Arguments

h0_df

data frame with H0 model characteristics for each protein

h1_df

data frame with H1 model characteristics for each protein

Value

data frame with H0 and H1 model characteristics for each protein and respectively computed F statistics

Examples

 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)

TPP2D documentation built on Nov. 8, 2020, 4:54 p.m.