Best data

The Open NAP approach builds on best available data, and works towards consistent and reusable data.

Prototyping

Starting small and gradually expanding the breadth and depth of the analysis and the plans.

Coherent Approaches

The Open NAPs promote coherence between different issues by applying the NAP-SDG iFrame to manage interlinkages.

Live Documents

Continuous update of any pirce of content in the NAP to create a plan that is always current.

Frontier Methods

Using best available and frontier technologies to advance the formulation and implementation of NAPs.

Models & Tools

The systems approach used embraces best available models and tools, espcially those that have been used widelin in regional and global studies.

Highlights

Several developing countries have already produced NAPs and are progressing with implementation. Each plan is unique, and yet there are many common best practices

Do you want to see Open NAPs underway?

We are working with several countries in the co-production of their NAPs.

Check Open NAP cases

From our blog

The process to formulate and implement NAPs in developing countries is well supported through technical support and guidance from the LEG and many other orgnaizations, programmes and networks. Many outreach and engagement events continue to be organized by partners. Below are some recent ones.

WB data with tidyverse

By Paul V. Desanker on April 6, 27274

R and the Tidyverse: next steps using WB data by Stéphane Guillou This document is redacted in R Markdown; the source file is available here: https://gitlab.com/stragu/DSH/blob/master/R/tidyverse_next_steps/tidyverse_next_steps.Rmd It is then knitted as a markdown file, which is the best version to view online and to print: https://gitlab.com/stragu/DSH/blob/master/R/tidyverse_next_steps/tidyverse_next_steps.md PD: see video at https://www.youtube.com/watch?v=2TZYeFcJQIk Setting up If you want to review the installation instructions: https://gitlab.com/stragu/DSH/blob/master/R/Installation.md If you are using your own laptop please open RStudio Make sure you have a working Internet connection On the Library’s training computers: Log in with your UQ username and password Make sure you have a working Internet connection Open the ZENworks application Look for “RStudio” Double click on RStudio, which will install both R and RStudio With RStudio open, let’s make sure we have the necessary packages installed by running this command (this might take a few minutes):

Continue reading

Test 5: Reactable Demo Cookbook

By Paul V. Desanker on April 6, 17174

A collection of recipes used to create the reactable demos ## Insert links data <- data.frame( Address = c("https://google.com", "https://yahoo.com", "https://duckduckgo.com"), Site = c("Google", "Yahoo", "DuckDuckGo") ) reactable(data, columns = list( # Using htmltools to render a link Address = colDef(cell = function(value) { htmltools::tags$a(href = value, target = "_blank", value) }), # Or using raw HTML Site = colDef(html = TRUE, cell = function(value, index) { sprintf('<a href="%s" target="_blank">%s</a>', data$Address[index], value) }) )) {"

Continue reading

Downloadable tables in RMarkdown with DT

By Paul V. Desanker on April 6, 16164

What we are trying to get to is an interactive table with buttons that allow you to perform the following actions: Copy to clipboard Export to CSV Export to Excel Export to PDF Print library(leaflet) library(widgetframe) ## Warning: package 'widgetframe' was built under R version 4.0.5 ## Loading required package: htmlwidgets ## Warning: package 'htmlwidgets' was built under R version 4.0.5 l <- leaflet(height=300) %>% addTiles() %>% setView(0,0,1) frameWidget(l) {"

Continue reading

Dygraphs Linked Time Series

By Paul V. Desanker on April 6, 16164

This is dummy tex: These are extraordinary times, and while it is nice to come up with nice catchphrases, the problems at hand require us to take an honest and objective look at the very real issues that countries are facing, examine things that were not working so great, so that when we rebuild our lives, we will be stronger, and we will learn to focus on achieving concrete outcomes.

Continue reading