Closed xinyixinyijiang closed 1 year ago
I actually got around this error. You have to specify the arguments: robust
, trend
, and sort
.
For example, here what I run that works:
prop.test.bc <- propeller.ttest(prop.list = bcprops,
design = mydesignbc,
contrasts = mycontrbc,
robust=TRUE,
trend=FALSE,
sort=TRUE)
Thanks a lot. This works for me as well.
Hi,
Thank you for your package!
I got an error when running propeller.ttest when setting the sex information as covariate. These are the versions of packages I used
Here are my 8 samples: four samples (2Female, 2Male) each for two genotypes. I want to test whether cell proportions differ significantly between genotypes taking sex as a covariate.
Here are my codes:
And got an error for propeller.ttest:
This is my design, contr, and str(props):
Do you have any idea how to fix this? Thank you very much!