This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"help": "https://catalog.data.gov/api/3/action/help_show?name=package_search", "success": true, "result": {"count": 48, "sort": "views_recent desc", "facets": {}, "results": [{"license_title": "License not specified", "maintainer": "New Media", "relationships_as_object": [], "private": false, "maintainer_email": "[email protected]", "num_tags": 5, "id": "59694770-b6b6-4ae0-a4b9-4ae69c0be2f6", "metadata_created": "2016-07-02T10:06:26.199575", "metadata_modified": "2016-07-02T10:06:26.199575", "author": null, "author_email": null, "state": "active", "version": null, "creator_user_id": "47303a9e-1187-4290-85a3-1fc02dc49e4a", "type": "dataset", "resources": [{"cache_last_updated": null, "package_id": "59694770-b6b6-4ae0-a4b9-4ae69c0be2f6", "webstore_last_updated": null, "id": "3a8a0ad1-19e7-4153-bb2f-d70cf88aaaf8", "size": null, "state": "active", "hash": "", "description": "", "format": "CSV", "tracking_summary": {"total": 32, "recent": 1}, "last_modified": null, "url_type": null, "no_real_name": "True", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dualplot <- function(x1, y1, y2, x2 = x1, col1 = "#C54E6D", col2 = "#009380", | |
| lwd = 1, colgrid = NULL, | |
| mar = c(3, 6, 3, 6) + 0.1, | |
| ylab1 = substitute(y1), ylab2 = substitute(y2), nxbreaks = 5, | |
| yleg1 = paste(ylab1, "(LHS)"), yleg2 = paste(ylab2, "(RHS)"), | |
| ylim1 = NULL, ylim2 = NULL, ylim.ref = 1, | |
| xlab = "", main = NULL, legx = "topleft", legy = NULL, ...){ | |
| # Base graphics function for drawing dual axis line plot. | |
| # Assumed to be two time series on a conceptually similar, non-identical scale | |
| # |