Skip to content

Commit

Permalink
hotfix to add project.cost to project.io table
Browse files Browse the repository at this point in the history
  • Loading branch information
jayhesselberth committed Apr 9, 2015
1 parent c805e5f commit 29e37f0
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: nihexporter
Title: NIH EXPORTER 2000-2014
Version: 0.6
Version: 0.6.1
Author: Jay Hesselberth <[email protected]> [aut,cre]
Maintainer: Jay Hesselberth <[email protected]>
Description: `nihexporter` provides NIH EXPORTER data describing biomedical funding from
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# nihexporter, verseion 0.7 (unreleased)

# nihexporter, verseion 0.6.1

## Minor

- added missing `project.cost` to `project.io` table

# nihexporter, verseion 0.6

## Major
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The package contains the following tables:

* `patents`: links project IDs (`project.num`) to `patent.id`

* `project_output`: pre-computed `n.pubs`, `n.patents` and `project.cost`
* `project_io`: pre-computed `n.pubs`, `n.patents` and `project.cost`

There are also a few helper variables that make exploratory analysis a bit easier:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The package contains the following tables:

- `patents`: links project IDs (`project.num`) to `patent.id`

- `project_output`: pre-computed `n.pubs`, `n.patents` and `project.cost`
- `project_io`: pre-computed `n.pubs`, `n.patents` and `project.cost`

There are also a few helper variables that make exploratory analysis a bit easier:

Expand Down
1 change: 1 addition & 0 deletions data-raw/project_io.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ patent_output <- project_costs %>%

project_io <- pub_output %>%
inner_join(patent_output) %>%
left_join(project_costs) %>%
filter(project.num != '') %>%
arrange(project.num)

Expand Down
Binary file modified data/project_io.rdata
Binary file not shown.
2 changes: 1 addition & 1 deletion vignettes/nihexporter.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ There are also a few helper variables that make exploratory analysis a bit easie

* `nih.institutes`: 27 NIH institutes in two-letter format

* `project_output`: pre-computed values for `n.pubs`, `n.patents` and `project.cost`
* `project_io`: pre-computed values for `n.pubs`, `n.patents` and `project.cost`

The `nihexporter` package is avavilable on [github](https://github.com/jayhesselberth/nihexporter).

Expand Down

0 comments on commit 29e37f0

Please sign in to comment.