Skip to content

Commit

Permalink
Merge pull request #11 from danforthcenter/disp_filter_fig
Browse files Browse the repository at this point in the history
changes from disparity filter work
  • Loading branch information
joshqsumner authored Oct 1, 2024
2 parents a7bd93f + 6a8ec59 commit c6d5357
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion R/asvDist.R
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ asvDist <- function(asvTab, asvCols = NULL, method = "spearman",
p <- ggplot2::ggplot(ldf, ggplot2::aes(
x = .data[["c1"]],
y = .data[["c2"]],
fill = ldf[[method]]
fill = .data[[method]]
)) +
ggplot2::geom_tile(color = NA, linewidth = 0) +
viridis::scale_fill_viridis(na.value = "grey100") +
Expand Down
7 changes: 1 addition & 6 deletions R/netThresh.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,7 @@
#'
#' @import parallel
#' @import chngpt
#' @return A named list (same as net) with three elements:
#' \itemize{
#' \item{"Nodes" is a dataframe of nodes and their metadata}
#' \item{"Edges" is a dataframe of edges connecting nodes.}
#' \item{"graph" is the igraph object used to generate the dataframes.}
#' }
#' @return A data frame of model results, same as \code{thresh}.
#' @examples
#'
#' taxa <- c(
Expand Down
7 changes: 1 addition & 6 deletions man/netThresh.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c6d5357

Please sign in to comment.