name generation for output files for other stats
This commit is contained in:
parent
6e54f339d1
commit
ae1e663caf
3 changed files with 15 additions and 15 deletions
|
@ -18,10 +18,12 @@ rm(colnames_npa_df, expected_rows_npa_lf
|
|||
|
||||
rm(pivot_cols)
|
||||
|
||||
my_sample_type = "sam"
|
||||
#=============
|
||||
# Output: unpaired analysis of time for sam
|
||||
#=============
|
||||
stats_time_unpaired_sam = paste0(outdir_stats, "stats_time_unpaired_sam.csv")
|
||||
outfile_name = paste0("stats_time_unpaired_", my_sample_type, ".csv")
|
||||
stats_time_unpaired = paste0(outdir_stats, outfile_name)
|
||||
#%%========================================================
|
||||
# data assignment for stats
|
||||
wf = sam_df_adults_clean
|
||||
|
@ -30,8 +32,6 @@ lf = sam_adults_lf
|
|||
table(lf$timepoint)
|
||||
lf$timepoint = paste0("t", lf$timepoint)
|
||||
|
||||
my_sample_type = "sam"
|
||||
|
||||
########################################################################
|
||||
# Unpaired stats at each timepoint b/w groups: wilcoxon UNpaired analysis with correction
|
||||
#######################################################################
|
||||
|
@ -315,5 +315,5 @@ colnames(combined_unpaired_stats_f)
|
|||
#******************
|
||||
# write output file
|
||||
#******************
|
||||
cat("UNpaired stats for groups will be:", stats_time_unpaired_sam)
|
||||
write.csv(combined_unpaired_stats_f, stats_time_unpaired_sam, row.names = FALSE)
|
||||
cat("UNpaired stats for groups will be:", stats_time_unpaired)
|
||||
write.csv(combined_unpaired_stats_f, stats_time_unpaired, row.names = FALSE)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue