svydbcoplot: Conditional plots

Description Usage Arguments Author(s) See Also Examples

View source: R/svydbcoplot.R

Description

Hexagon binning will be used for conditional plots.

Usage

1

Arguments

formula

Formula indicating x and y. i.e. y~x.

by

Formula indicating the conditions of each plot. i.e by~by2

design

svydb.design object.

Author(s)

Charco Hui

See Also

svydbdesign, svydbhexbin, svydbhexplot

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
data(nhane)
nh.dbsurv = svydbdesign(st = SDMVSTRA, wt = WTMEC2YR, id = SDMVPSU, data = nhane)
svydbcoplot(Age ~ Height, by = SmokeNow~Gender, design = nh.dbsurv)
# OR with a database connection
# library(MonetDBLite)
# library(DBI)
# library(dbplyr)
# con = dbConnect(MonetDBLite())
# dbWriteTable(con, "nhane", nhane)
# nhane.db = tbl(con, "nhane")
# nh.dbsurv = svydbdesign(st = SDMVSTRA, wt = WTMEC2YR, id = SDMVPSU, data = nhane.db)

chrk623/svydb documentation built on Oct. 6, 2019, 6:54 a.m.