Nothing
##
## document data here
## don't forget: @usage data(XXX)
#' @title Example output from soilDB::fetchOSD()
#' @description These example data are used to test various functions in this package when network access may be limited.
#'
#' @keywords datasets
#' @usage data(OSDexamples)
"OSDexamples"
#'
#' @title Table 5.2 from Hole and Campbell, 1985.
#' @description An adjacency matrix describing shared soil map boundary segments from the Soil Survey of Shawnee county, KS. This is table 5.2 from Hole and Campbell, 1985.
#'
#' @keywords datasets
#'
#' @usage data(table5.2)
#'
#' @references Hole, F.D. and J.B. Campbell. Soil Landscape Analysis. Rowman and Allanheld, 1985.
#'
#' @examples
#'
#' data("table5.2")
#'
#' if(requireNamespace("igraph")) {
#'
#' # note special incantation to get the "correct" graph structure
#' g <- igraph::graph_from_adjacency_matrix(table5.2, mode = 'upper', diag = FALSE, weighted = TRUE)
#'
#' # visualize
#' op <- par(no.readonly = TRUE)
#'
#' par(mar = c(0,0,0,0))
#' plot(g)
#'
#' plot(g, vertex.size = sqrt(igraph::degree(g) * 25), vertex.label.family = 'sans')
#'
#' # find communities
#' cm <- igraph::cluster_walktrap(g)
#' plot(cm, g, vertex.label.family = 'sans')
#'
#' par(op)
#' }
#'
"table5.2"
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.