Skip to content

Instantly share code, notes, and snippets.

View novica's full-sized avatar

novica novica

View GitHub Profile
@novica
novica / 01_week.sql
Last active January 23, 2022 18:12
dezoomcamp exercises
/*
* There are two question before these that don not require much code,
* so only the SQL related answers are written below.
*/
/* See the data */
SELECT
*
@novica
novica / bilans_na_rashodi.R
Created March 22, 2021 20:11
R script to create a clean csv from the municipal expenses budget pdf
box::use(
tabulizer[locate_areas, extract_tables],
purrr[reduce],
dplyr[mutate, across, select, bind_rows, if_else, glimpse, lag, `%>%`],
stringr[str_remove, str_remove_all],
tidyr[extract, fill],
readr[write_csv]
)
@novica
novica / bilans_na_prihodi.R
Last active March 22, 2021 18:36
R script to create a clean csv from the municipal income budget pdf
box::use(
tabulizer[locate_areas, extract_tables],
purrr[reduce],
dplyr[mutate, across, select, bind_rows, if_else, glimpse, `%>%`],
stringr[str_remove, str_remove_all],
readr[write_csv]
)
# bilans na prihodi
---
title: "Two-letter MK domain names"
output:
html_document:
df_print: paged
editor_options:
chunk_output_type: console
---
```{r setup, include=FALSE}