Nothing
#' Calculate the edge probabilities.
#'
#' This function calculates the marginal posterior probabilities of the edges
#' in the network segments, for each timepoint, and optionally calculates the
#' same for specified changepoints.
#'
#'
#' @param network.samples Network samples obtained from the MCMC simulation
#' using \code{\link{EDISON.run}} and \code{\link{runDBN}}.
#' @param cps Optionally specifies changepoints to allow for calculating the
#' marginal posterior edge probabilities for specific segments.
#' @return A list with elements: \item{probs.all}{A list containing marginal
#' edge posterior probabilities for each timepoint.} \item{probs.segs}{A list
#' containing marginal edge posterior probabilities for each specified
#' segment.}
#' @author Frank Dondelinger
#' @seealso \code{\link{calculateEdgeProbabilitiesTimePoints}},
#'
#' \code{\link{calculateEdgeProbabilitiesSegs}}
#' @examples
#'
#' # Generate random gene network and simulate data from it
#' dataset = simulateNetwork(l=25)
#'
#' # Run MCMC simulation to infer networks and changepoint locations
#' result = EDISON.run(dataset$sim_data, num.iter=500)
#'
#' # Calculate marginal posterior probabilities of edges in the network
#' network = calculateEdgeProbabilities(result)
#'
#' # Calculate marginal posterior probabilities of edges in the network,
#' # using the true changepoints
#' true.cps = c(2,dataset$epsilon)
#' network = calculateEdgeProbabilities(result, cps=true.cps)
#'
#' @export calculateEdgeProbabilities
calculateEdgeProbabilities <-
function(network.samples, cps=NULL) {
if(is.null(cps)) cps = c(2, network.samples$n+1)
numNodes = length(network.samples) - 1
prob.networks =
calculateEdgeProbabilitiesTimePoints(network.samples, cps, numNodes)
prob.networks.segs =
calculateEdgeProbabilitiesSegs(prob.networks, cps, numNodes)
return(list(probs.all=prob.networks, probs.segs=prob.networks.segs))
}
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.