Result of pipelines

Published

September 5, 2024

Code
library(targets)
source("R/utils.R")

Pipeline schema:

Code
tar_glimpse()

County data

Focus on assignee for location:

Code
cnty <- read.csv("data/county_patent.csv", 
                 colClasses = c("character", "character", 
                                "numeric", "numeric",
                                "numeric")) 
suppressMessages(table_with_options(cnty))
Warning in instance$preRenderHook(instance): It seems your data is too big for
client-side DataTables. You may consider server-side processing:
https://rstudio.github.io/DT/server.html

Using location of inventor

Code
cnty <- read.csv("data/county_inv.csv")
table_with_options(cnty)