knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE) library(profvis) options(rmarkdown.html_vignette.check_title = FALSE)
This summarize code optimization results in April 2021. All code profiling were based on 0.1% sample data.
Before
data(profile_member_sample12yr_all, package = "medicareR") attach(member_sample12yr_all) member_sample12yr_all
After
data(profile_member_sample12yr_by_yr, package = "medicareR") attach(member_sample12yr) member_sample12yr
Before
data(profile_professional_sample12yr_all, package = "medicareR") attach(profile_professional_sample12yr_all) profile_professional_sample12yr_all
After
data(profile_professional_sample12yr_by_year, package = "medicareR") attach(profile_professional_sample12yr_by_year) profile_professional_sample12yr_by_year
Before
data("profile_fac_clm_sample12yr_all", package = "medicareR") attach(profile_fac_clm_sample12yr_all) profile_fac_clm_sample12yr_all
After
data("profile_fac_clm_sample12yr_by_yr", package = "medicareR") attach(profile_fac_clm_sample12yr_by_yr) profile_fac_clm_sample12yr_by_yr
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.