R/plot.curvature.R

#' Plot curvature object.
#'
#' @import tibble
#' @import ggplot2
#' @export
#'
plot.curvature = function(res) {
  ggplot(tibble(sec = c(res)),aes(sec)) +
    geom_histogram(bins = 30)
}
ChristofSeiler/curvature documentation built on May 28, 2019, 12:17 p.m.