Nothing
# Subset using keywords
filter_cip(keep_text = "engineering")
\donttest{
# Multiple passes to narrow the results
first_pass <- filter_cip("civil")
second_pass <- filter_cip("engineering", cip = first_pass)
filter_cip(drop_text = "technology", cip = second_pass)
# drop_text argument, when used, must be named
filter_cip("civil engineering", drop_text = "technology")
# Subset using numerical codes
filter_cip(keep_text = c("050125", "160501"))
# Subset using regular expressions
filter_cip(keep_text = "^54")
filter_cip(keep_text = c("^1407", "^1408"))
# Select columns
filter_cip(keep_text = "^54", select = c("cip6", "cip4name"))
}
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.