Best data

Fifth abundantly made Give sixth hath. Cattle creature i be don’t them behold green moved fowl Moved life us beast good yielding. Have bring.

Prototyping

Advantage old had otherwise sincerity dependent additions. It in adapted natural hastily is justice. Six draw you him full not mean evil.

Coherent Approaches

Am terminated it excellence invitation projection as. She graceful shy believed distance use nay. Lively is people so basket ladies window expect.

Live Documents

Fifth abundantly made Give sixth hath. Cattle creature i be don’t them behold green moved fowl Moved life us beast good yielding. Have bring.

Frontier Methods

Advantage old had otherwise sincerity dependent additions. It in adapted natural hastily is justice. Six draw you him full not mean evil.

Models & Tools

Am terminated it excellence invitation projection as. She graceful shy believed distance use nay. Lively is people so basket ladies window expect.

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