You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Load .rds files and save data as database tables in a duckdb database file
library(readr)
library(dbplyr)
library(duckdb)
library(DBI)
# Load data ---------------------------------------------------------------
wdi <- read_rds("output/wdi.rds")
# Save in DuckDB database file --------------------------------------------
con <- DBI::dbConnect(duckdb::duckdb(), "C:/Users/aaw262/Norad/Norad-Avd-Kunnskap - Statistikk og analyse/06. Statistikkdatabaser/3. Databasefiler/context.duckdb")