knitr::opts_chunk$set(echo = FALSE)
library(publicLibs)
library(shiny)

Overview

Background

Partnerships

Background

Public-Private Partnerships

Background

Public-Public Partnerships

Background

Outsourcing Drivers

Problem Statement

“The Air Force Community Partnership Program is a framework through which installation and public/private sector community leaders can develop innovative ways to leverage their capabilities and resources to obtain shared value and benefit by avoiding or reducing costs.”

Reseach Statement

This research effort investigated the off-base community to build a tool to identify installations which should explore partnership opportunities. The scope of this research will be limited to exploring library partnership opportunities at Air Force installations located in the Continental United States (CONUS). This research investigates the facilitators, or environmental factors, to identify where greater opportunities for creating partnerships may exist. The result of this research is a tool which produces a relative measure for each off-base community, where higher values indicate a greater potential for partnerships. This relative measure utilizes inverse distance weighting (IDW) between an installation and each service location in the surrounding community.

Scope

Methodology

Data Summary

- Sources of data: www.public-libraries.org and www.publiclibraries.com - Data converted from HTML tables to data-frame in R - Libraries geocoded using Google-maps Application Programming Interface
\hfill

Methodology

Data Summary - www.public-libraries.org

Methodology

Data Summary - www.publiclibraries.com

Methodology

Library Size Estimate^7^

Methodology

Data Summary


DT::datatable(publicLibs::US_Libs[1:2000,])

Methodology

Analysis

Interactive Plot

knitr::include_app('https://afit.shinyapps.io/offbase_libraries', height = '800px')

Summary

References

  1. Merewitz, S. (2016). Innovative Public-Private Partnership for the New Long Beach Civic Center. Retrieved February 18, 2016, from http://www.publicceo.com/2016/02/innovative-public-private-partnership-for-the-new-long-beach-civic-center/
  2. Hodge, G. a., & Greve, C. (2007). Public Private Partnerships: An International Performance Review. Public Administration Review, 67(3), 545–558. http://doi.org/10.1111/j.1540-6210.2007.00736.x
  3. Li, B., & Akintoye, A. (2003). An Overview of Public-Private Parnership. In A. Akintoye, M. Beck, & C. Hardcastle (Eds.), Public-Private Partnerships: Managing Risks and Oppurtunities. John Wiley & Sons. Retrieved from https://books.google.com/books?hl=en&lr=&id=Y_hAmDKmJM0C&pgis=1
  4. Lobina, E., & Hall, D. (2006). Public-Public Partnerships as a catalyst for capacity building and institutional development: Lessons from Stockholm Vatten’s experience in the Baltic region. Retrieved from http://www.psiru.org/reports/2006-09-W-PUPs.doc
  5. Lambert, D. M., Emmelhainz, M. A., & Gardner, J. (1996). So You Think You Want a Partner? Marketing Management, 5(2), 25–41.
  6. Johnson, B., & Clark, L. (2015, September). A Plan for Strategic Basing. The Military Engineer, 52 – 54.
  7. Dahlgren, A. C. (2009). Public Library Space Needs: A Planning Outline. Madison, Wisconsin.
  8. De Smith, M., Goodchild, M. F., & Longley, P. a. (2015). Geospatial Analysis 5th Edition, 2015. Retrieved from http://www.spatialanalysisonline.com/HTML/index.html
  9. Longley, P., & Goodchild, M. (2011). Geographic Information Systems and Science (Third). John Wiley & Sons. Retrieved from https://books.google.com/books?hl=en&lr=&id=toobg6OwFPEC&pgis=1
shinyApp(options = list(width = '100%', height = '800px'),

ui = fluidPage(mainPanel(DT::dataTableOutput("states", height = "800px"),
                         width = 12)),

server = function(input, output, session){

  library(DT)
  output$states <- DT::renderDataTable({
                   DT::datatable(publicLibs::US_Libs[1:2000,],                                                     options = list(pageLength = 14))
})
})


Auburngrads/publicLibs documentation built on July 24, 2020, 5:41 a.m.