R/negative.correlation.ratio.ts.R

Defines functions negative.correlation.ratio.ts

#
#
# res = negative.correlation.ratio.ts(
#     ps.st,
#     N = 200,
#     r.threshold= 0.8,
#     p.threshold=0.05,
#     method = "spearman",
#     order = "time",
#     g1 = "Group",# 分组1
#     g2 = "space",# 分组2
#     g3 = "time",# 分组3
#     ord.g1 =NULL,# 排序顺序
#     ord.g2 = NULL, # 排序顺序
#     ord.g3 = NULL# 排序顺序
# )
# # 导出图片
# res[[1]]
# # 导出数据
# dat = res[[2]]
# head(dat)

negative.correlation.ratio.ts = function(
    ps.st,
    N = 200,
    r.threshold= 0.8,
    p.threshold=0.05,
    method = "spearman",
    order = "time",
    g1 = "Group",# 分组1
    g2 = "space",# 分组2
    g3 = "time",# 分组3
    ord.g1 =NULL,# 排序顺序
    ord.g2 = NULL, # 排序顺序
    ord.g3 = NULL# 排序顺序
){

  otutab <- ps.st %>%
    vegan_otu() %>%
    as.data.frame()
  dim(otutab)

  # id <- sample_data(ps)$Group %>% unique()
  B = c()
  ps.all = ps.st
  map = sample_data(ps.all)

  # g2 = NULL
  if (is.null(g2)) {
    sp = ""
  } else if (is.null(ord.g2)){
    sp = map[,g2] %>% as.matrix() %>% as.vector() %>% unique()
  } else{
    sp = ord.g2
    print(sp)
  }
  # g3 = NULL
  if (is.null(g3)) {
    ti = ""
  } else if (is.null(ord.g3)){
    ti = map[,g3] %>% as.matrix() %>% as.vector() %>% unique()
  } else{
    ti = ord.g3
    print(ti)
  }

  if (is.null(ord.g1)) {
    group = map[,g1] %>% as.matrix() %>% as.vector() %>% unique()

  } else{
    group = ord.g1
    print(group)
  }



  #-构造两两组合全部情况
  for (i in 1:length(sp)) {
    dat = data.frame(g2 = sp[i],g3 = ti)

    if (i ==1) {
      dat.f = dat
    } else{
      dat.f = rbind(dat.f,dat)
    }

  }

  cor.all = list()
  D = c()
  B = c()
  # 存储不同分组的相关矩阵拮即可
  for (j in 1:nrow(dat.f)) {
    if (dat.f[j,1] == "") {
      ps.t = ps.all
    } else{
      ps.t = ps.all %>% subset_samples.wt(g2,dat.f[j,1])
    }

    if (dat.f[j,2] == "") {
      ps.f = ps.t
    } else{
      ps.f = ps.t  %>% subset_samples.wt(g3,dat.f[j,2])
    }


    for (n in 1:length(group)) {
      map = sample_data(ps.f)
      head(map)
      map$Group
      ps.g = ps.f  %>% subset_samples.wt(g1,group[n])

      result = cor_Big_micro(ps = ps.g,
                             N = N,
                             r.threshold= r.threshold,
                             p.threshold= p.threshold,
                             method = method,
                             scale = FALSE)
      cor = result[[1]]
      temx = paste(dat.f[j,1],dat.f[j,2],group[n],sep = ".")
      cor.all[[temx]] = cor
      igraph = make_igraph(cor)
      ret2 = net_properties.2(igraph) %>% as.data.frame()
      head(ret2)
      a = ret2[1,1] %>% as.numeric()
      n = ret2[3,1] %>% as.numeric()
      # B[j] = n/a *100
      B = c(B,n/a *100)
      D = c(D,temx)
      # D[j] = temx



    }
  }


  dat = data.frame(ID = D,ratio = B)
  head(dat)
  #-行--空间
  if (order == "space"|order == "g2") {
    row.id = g3
    row.num =  length(ti)
    a = c()
    for (i in 1:length(sp)) {
      for (j in 1:length(ti)) {
        tem = paste(sp[i],ti[j],group,sep = ".")
        a = c(a,tem)
      }
    }

  } else if (order == "time"|order == "g3") {
    row.id = g2
    row.num =  length(sp)
    a = c()
    for (j in 1:length(ti)) {
      for (i in 1:length(sp)) {
        tem = paste(sp[i],ti[j],group,sep = ".")
        a = c(a,tem)
      }
    }
  }

  head(dat)
  dat$group = sapply(strsplit(as.character(dat$ID), "[.]"), `[`, 3)
  dat$time = sapply(strsplit(as.character(dat$ID), "[.]"), `[`, 2)
  dat$space = sapply(strsplit(as.character(dat$ID), "[.]"), `[`, 1)
  dat$label = paste(dat$time,dat$space,sep = ".")
  dat$Group = factor(dat$ID,levels = a)


  p = ggplot(dat) + geom_bar(aes(x = group,y = ratio,
                                 fill = group),stat =
                               "identity",width = .5) +
    geom_text(aes(x = group,y = ratio,label = round(ratio,2)))+
    facet_wrap(.~ label,scales="free_y",ncol = row.num )
  return(list(p,dat))
}
taowenmicro/ggClusterNet documentation built on March 29, 2024, 1:32 a.m.