plot.roll_your_own: Plot 'roll_your_own' Objects

Description Usage Arguments Value Examples

View source: R/roll_your_own.R

Description

Plot roll_your_own Objects

Usage

1
2
## S3 method for class 'roll_your_own'
plot(x, fill = "#CC79A7", alpha = 0.5, ...)

Arguments

x

An object of class roll_your_own

fill

Character string specifying the color for the ridges.

alpha

Numeric. Transparancey of the ridges

...

Currently ignored

Value

An object of class ggplot

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
####################################
###### example 1: assortment #######
####################################
# assortment
library(assortnet)

Y <- BGGM::bfi[,1:10]
membership <- c(rep("a", 5), rep("c", 5))

# fit model
fit <- estimate(Y = Y, iter = 250,
                progress = FALSE)

# membership
membership <- c(rep("a", 5), rep("c", 5))

# define function
f <- function(x,...){
 assortment.discrete(x, ...)$r
}

net_stat <- roll_your_own(object = fit,
                          FUN = f,
                          types = membership,
                          weighted = TRUE,
                          SE = FALSE, M = 1,
                          progress = FALSE)

# plot
plot(net_stat)

BGGM documentation built on Aug. 20, 2021, 5:08 p.m.