Series
- Using R (12)
- Using WordPress (3)
-
Recent Posts
- Using R — Working with Geospatial Data
- Best Best Practices Ever!
- Using R — Package Installation Problems
- Using R — Packaging a C library in 15 minutes
- Using R — Callling C code with Rcpp
- Using R — .Call(“hello”)
- Using R — Calling C Code ‘Hello World!’
- Using R — A Script Introduction to R
- Using R — Easier Error Handling with try()
- Using R — Basic error Handing with tryCatch()
Blogroll
Tags
Babel BeautifulSoup best practices C CentOS CSV Data.gov disk I/O error handling FIPS HTML i18n ISO javascript jquery KML LaTex Mac metadata MS Access MS Excel MySQL netcdf NYTimes palettes plone PostgreSQL python R RDBMS R package SQL SQLite standards Subversion Trac Tufte Ubuntu units Unix USGS validation VMware WordPress XML
Tag Archives: error handling
Using R — Easier Error Handling with try()
This entry is part 5 of 12 in the series Using RIn a previous post we looked at error handling in R with the tryCatch() function and how this could be used to write Java style try-catch-finally blocks. This time … read more …
Using R — Basic error Handing with tryCatch()
This entry is part 4 of 12 in the series Using RThe R language definition section on Exception Handling describes a very few basics about exceptions in R but is of little use to anyone trying to write robust code … read more …
Using R — Standalone Scripts & Error Messages
This entry is part 4 of 12 in the series Using ROpen-source R is an amazing tool for statistical analysis and data visualization. Serious R gurus have found ways to do just about anything entirely within the R environment. Nevertheless, … read more …