Monthly Archives: June 2015

SciLint

I’m considering sneaking syntax checking into the scientific code review process I’ve been running this quarter. Here are some resources:

PyLint: http://www.pylint.org/
RLint: https://code.google.com/p/google-rlint/ or http://cran.r-project.org/web/packages/lint/index.html
Stata Lint: http://www.stata.com/statalist/archive/2009-08/msg01048.html http://www.stata.com/help.cgi?syntax http://www.stata.com/help.cgi?language

Comments Off on SciLint

Filed under software engineering

CHD mortality over time from GBD 2013

CHD mortality over time:
USA http://ihmeuw.org/3b3f
Peru http://ihmeuw.org/3b3g

Comments Off on CHD mortality over time from GBD 2013

Filed under global health

Mortality Rates above Emergency Threshold

Re https://healthyalgorithms.wordpress.com/?p=2750 , PLoS NTD published the paper I reviewed for them, too: http://journals.plos.org/plosntds/article?id=10.1371/journal.pntd.0003181

Cool to see it in print. I wanted them to comment on the missing youth in their population pyramid, but I did not demand it:

missing_youth

I think the authors felt it was too speculative.

Comments Off on Mortality Rates above Emergency Threshold

Filed under global health

Data for Health Program

Very exciting news about filling the gaps in our knowledge about health http://www.bloomberg.org/press/releases/bloomberg-philanthropies-launches-100-million-data-health-program-developing-countries/

Comments Off on Data for Health Program

Filed under global health

Aww, that’s sweet of them

Abraham Flaxman
PLOS Neglected Tropical Diseases Reviewer (2014)

May 2015

Dear Abraham,

On behalf of PLOS and the PLOS Neglected Tropical Diseases editorial team, I would like to thank you for participating in the peer review process this past year at PLOS Neglected Tropical Diseases We very much appreciate your valuable input in 2014. We know there are many claims on your time and expertise but with your help, we have continued to publish an influential, lively and highly accessed Open Access journal. Simply put, we could not do it without you and the thousands of other volunteers for PLOS Neglected Tropical Diseases and the other PLOS journals who graciously contributed time reviewing manuscripts.

A public “Thank You” to our 2014 reviewers – including you – was published in February 2015.
(2015) PLOS Neglected Tropical Diseases 2014 Reviewer Thank You. PLoS Negl Trop Dis 9(2): e0003621. doi:10.1371/journal.pntd.0003621

http://journals.plos.org/plosntds/article?id=10.1371/journal.pntd.0003621

Comments Off on Aww, that’s sweet of them

Filed under science policy

WEIRD View of Human Nature

I keep thinking of this article: https://www.sciencemag.org/content/328/5986/1627.full

Don’t generalize too much from WIERDos

Comments Off on WEIRD View of Human Nature

Filed under health communication

Catalog of Reproducible Products

The Reproducibility and Open Science (ROS) Working Group recently finished up a form to begin to gather information on Reproducible Products from the community.

Please take a few minutes to submit information on any product (peer-reviewed manuscript, preprint, or other product). It is only about 20 questions with many multiple choice question.

The google form can be accessed @
http://goo.gl/hHcFlK

Please feel free to let us know if you have any questions or comments.
Thanks
Steven

Steven Roberts
faculty.washington.edu/sr320

Comments Off on Catalog of Reproducible Products

Filed under science policy

Two ways to do categorical data in Python

Pandas has it: http://pandas-docs.github.io/pandas-docs-travis/categorical.html

Python has it, too: https://docs.python.org/3/library/enum.html

Will this make my life easier?

Comments Off on Two ways to do categorical data in Python

Filed under software engineering

Scientific Constants

A fun pointer I picked up at the eScience institute recently is where to find constants in python: scipy.constants http://docs.scipy.org/doc/scipy/reference/constants.html

or, if you fancy units, astropy.constants http://docs.astropy.org/en/stable/constants/index.html

Comments Off on Scientific Constants

Filed under disease modeling

What style should I use for my docstrings?

The numpy docstring style should be just fine: http://sphinxcontrib-napoleon.readthedocs.org/en/latest/example_numpy.html

Comments Off on What style should I use for my docstrings?

Filed under software engineering