Tidy Finance migrates from SQLite to Parquet

Christoph Frey
library(RSQLite) library(dbplyr) We recently updated our data handling procedures from SQLite to Parquet files. This change was made to improve performance and cross-programming language consistency. However, we understand that some users may still need access to the legacy SQLite database. Therefore, the following blog post contains the code snippets and (in a condensed form), the previous explanations on the use of SQLite. There are many ways to set up and organize a database, depending on...