Series
- Using R (22)
- Using WordPress (3)
-
Recent Posts
- Logging and Error Handling in Operational Systems
- PWFSLSmoke 1.0: Visualizing Wildfire Smoke Data
- Improved Python-style Logging in R
- Introducing the PWFSLSmoke Package
- Python-style Logging in R
- When k-means Clustering Fails
- Visualizing Bikeshare Data
- Function Argument Lists and missing()
- MazamaSpatialUtils — Ebola Map Example
- Installing subversion 1.7.10 on OSX Yosemite
Blogroll
Tags
AirFire AQI Babel BeautifulSoup best practices C CentOS CSV Data.gov disk I/O error handling FIPS GIS HTML i18n ISO javascript jquery KML LaTex logging Mac MacPorts metadata MS Excel netcdf OSX plone PM2.5 PWFSL python R R package shapefile smoke spatial standards Subversion Ubuntu Unix USGS validation VMware WordPress XML
Tag Archives: R
Logging and Error Handling in Operational Systems
Operational systems, by definition, need to work without human input. Systems are considered “operational” after they have ben thoroughly tested and shown to work properly with a variety of input. However, no software is perfect and no real-world system operates … read more …
Posted in Uncategorized
Tagged R, R package
Comments Off on Logging and Error Handling in Operational Systems
PWFSLSmoke 1.0: Visualizing Wildfire Smoke Data
Mazama Science has released the first official version (1.0) of the PWFSLSmoke R package for working with PM2.5 monitoring data. A beta version was released last year, along with an accompanying blog post. In this post, we discuss the purpose … read more …
Python-style Logging in R
We are increasingly using R in “operational” settings that require robust error handling and logging. In this post we describe a quick-and-dirty way to get python style multi-level log files by wrapping the futile.logger package.
When k-means Clustering Fails
Letting the computer automatically find groupings in data is incredibly powerful and is at the heart of “data mining” and “machine learning”. One of the most widely used methods for clustering data is k-means clustering. Unfortunately, k-means clustering can fail … read more …