I hereby claim:
- I am mbjones on github.
- I am mbjones (https://keybase.io/mbjones) on keybase.
- I have a public key whose fingerprint is AF42 17D9 18A4 4581 2B07 0682 6D3F 2BB3 48B5 8AF7
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
library(XML) | |
library(httr) | |
post_url <- "http://www.adfg.alaska.gov/index.cfm?adfg=CommercialByFisherySalmon.exvesselquery" | |
post_body <- list(year="2014", areas= "allareas", speciesx= "allspecies", submit= "Find%20the%20Data") | |
html <- POST(post_url, body = post_body, encode = "form") | |
akcommdf_2014 <- readHTMLTable(content(html))[[1]] | |
#View(akcommdf_2014) |
#' Produces a merged foo dataset where the columns are merged from seperate data files. | |
#' | |
#' More detailed description here | |
#' @param datasetnums a list of the numeric datasets to be merged | |
#' @return the merged data frame | |
mergedata <- function(datasetnums) { | |
# Assume directory structure such as: | |
#data | |
# -- data1.R |
# Example R code to filter data using criteria passed in via lists, using lapply | |
# Matt Jones 2015-10-19 | |
library(dplyr) | |
# create a sample fake data frame | |
df <- cbind(expand.grid(sciName=list("A", "B", "C", "D"), family=list("X", "Y"), stage=list("S1", "S2", "S3", "S4")), count=1) | |
df | |
# set up our filter conditions | |
condition1 <- list(sciName="A", stageVector=c("S2", "S3")) |
<?xml version="1.0" encoding="UTF-8"?> | |
<gfc:FC_FeatureCatalogue | |
id="_1" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:gco="http://www.isotc211.org/2005/gco" | |
xmlns:gmd="http://www.isotc211.org/2005/gmd" | |
xmlns:gfc="http://www.isotc211.org/2005/gfc" | |
xmlns:gml="http://www.opengis.net/gml/3.2" | |
xmlns:gmx="http://www.isotc211.org/2005/gmx" | |
xsi:schemaLocation="http://www.isotc211.org/2005/gfc Q:\users\mize.jacqueline\ISO\gfc\gfc.xsd"> |
#!/usr/bin/ruby | |
# For an OO language, this is distinctly procedural. Should probably fix that. | |
require 'json' | |
details = Hash.new({}) | |
capture_params = [ | |
{ :name => "title", :message => "Enter project name." }, | |
{ :name => "url", :message => "Enter the URL of the project repository." }, |
@prefix prov: <http://www.w3.org/ns/prov#> . | |
@prefix ns0: <http://www.openarchives.org/ore/terms/> . | |
@prefix dc: <http://purl.org/dc/terms/> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
@prefix ns1: <http://purl.org/spar/cito/> . | |
@prefix dc11: <http://purl.org/dc/elements/1.1/> . | |
<https://cn-stage-2.test.dataone.org/cn/v2/resolve/urn%3Auuid%3A936436eb-2676-44b2-920c-acc5e28384f9> | |
prov:wasGeneratedBy <urn:uuid:aabccb0e-ccc8-4db8-a61d-53eb314906be> ; | |
a <http://purl.dataone.org/provone/2015/01/15/ontology#Data> ; |
#!/bin/bash | |
WORKDIR=${PWD} | |
create_repos () { | |
rm -rf repo-split-example repo-split-recent repo-split-history | |
# Create the repo to be split | |
example_repo | |
# Create the repo to contain the historical commits | |
HISTREPO="file://${WORKDIR}/repo-split-history" |
--- | |
title: "FAIR Metrics" | |
author: "Matt Jones" | |
date: "5/8/2019" | |
output: html_document | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(echo = TRUE) | |
library(dplyr) |
{ | |
"@context": "https://doi.org/10.5063/schema/codemeta-2.0", | |
"@type": "SoftwareSourceCode", | |
"license": "https://spdx.org/licenses/Apache-2.0", | |
"codeRepository": "https://github.com/codemeta/codemeta", | |
"dateCreated": "2020-02-04", | |
"datePublished": "2020-02-05", | |
"downloadUrl": "https://codemeta.github.io/", | |
"name": "CodeMeta", | |
"description": "CodeMeta is a metadata language for code.", |