skip to Main Content

CSV to customized JSON format in R

I want to convert the following data: CERTIFICADO = tibble::tibble(type = "cuar_private_file", title = "Certificado Participacion CC FECHIC 2023 30207", excerpt = "Certificado Participacion CC FECHIC 2023 30207", post_date = "2024-01-21 21:00:00", owners = 1965, attachments = "Certificado_Participacion_CC_FECHIC_2023_30207.pdf", method =…

VIEW QUESTION

Ubuntu – using HTML's details/summary in shiny

How can I restore the "arrow" style in HTML's details/summary collapsible section? library(shiny) ui <- fluidPage(tags$details(tags$summary("Collapsible"), "This content is inside")) writeLines(capture.output(ui), "~/tmp/qq.html") shinyApp(ui = ui, server = function(input, output) {}) Comparing the raw HTML (in "qq.html") on the left with…

VIEW QUESTION

R – Read NativeLand JSON and plot in ggplot

I would like to add my own features to the map of Native Land: > library(leaflet) > url = "https://native-land.ca/coordinates/indigenousTerritories.json" > NL <- sf::st_read(url) > ggplot(NL) + geom_sf() But I get the follow error: Error in `geom_sf()`: ! Problem while…

VIEW QUESTION
Back To Top
Search