1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| pdf(file = 'nV_up_number_of_interactions_fF.pdf', height = 48, width = 24) par(mfrow = c(3,2), xpd=TRUE) f_CC_nV_sp(f_CC_nV_o(SS, lc_filter = flt), 'Fibroblasts') f_CC_nV_sp(f_CC_nV_o(SS, measure = "weight", lc_filter = flt), 'Fibroblasts') f_CC_nV_sp(f_CC_nV_o(ER, lc_filter = flt), 'Fibroblasts') f_CC_nV_sp(f_CC_nV_o(ER, measure = "weight", lc_filter = flt), 'Fibroblasts') f_CC_nV_sp(f_CC_nV_o(CC, lc_filter = flt), 'Fibroblasts') f_CC_nV_sp(f_CC_nV_o(CC, measure = "weight", lc_filter = flt), 'Fibroblasts') dev.off()
pdf(file = 'nV_up_number_of_interactions_tF.pdf', height = 48, width = 24) par(mfrow = c(3,2), xpd=TRUE) f_CC_nV_sp(f_CC_nV_o(SS, lc_filter = flt), 'Fibroblasts', is.source = F) f_CC_nV_sp(f_CC_nV_o(SS, measure = "weight", lc_filter = flt), 'Fibroblasts', is.source = F) f_CC_nV_sp(f_CC_nV_o(ER, lc_filter = flt), 'Fibroblasts', is.source = F) f_CC_nV_sp(f_CC_nV_o(ER, measure = "weight", lc_filter = flt), 'Fibroblasts', is.source = F) f_CC_nV_sp(f_CC_nV_o(CC, lc_filter = flt), 'Fibroblasts', is.source = F) f_CC_nV_sp(f_CC_nV_o(CC, measure = "weight", lc_filter = flt), 'Fibroblasts', is.source = F) dev.off()
|