-
Notifications
You must be signed in to change notification settings - Fork 0
/
r-rec.R
53 lines (28 loc) · 1.03 KB
/
r-rec.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
host = "https://data.brreg.no"
req = "/regnskapsregisteret/regnskap/"
orgnum = "915073557"
#https://data.brreg.no/regnskapsregisteret/regnskap/922944997?%C3%A5r=2020®nskapstype=SELSKAP
#library(tidyverse)
pacman::p_load(tidyverse, jsonlite, rvest, xml2)
url <- str_c(host, req, orgnum)
# tmp <- curl::curl(url = paste(url))
#rvest::read_html("https://data.brreg.no/regnskapsregisteret/regnskap/922944997")
#url <- "https://data.brreg.no/regnskapsregisteret/regnskap/922944997?%C3%A5r=2021®nskapstype=SELSKAP"
req <- curl::curl_fetch_memory(url)
str(req)
tmp <- jsonlite::prettify(rawToChar(req$content)) %>%
jsonlite::fromJSON() %>% as_tibble()
# scientific notatio off i R
options(scipen=999)
(
tmp$eiendeler$omloepsmidler$sumOmloepsmidler
) + (tmp$eiendeler$anleggsmidler$sumAnleggsmidler)
# tmp <- jsonlite::fromJSON(tmp) %>% as_tibble()
# Resultatregnskap
v <- tmp$resultatregnskapResultat
t(v)
# Balanse
v <- tmp$egenkapitalGjeld
t(v)
openxlsx::write.xlsx(tibble(tmp), file = "output.xlsx")
write(tmp, "output.txt")