Browsed by
Month: May 2017

Microsoft and the R(evolution)

Microsoft and the R(evolution)

Over the last few years Microsoft have been building infrastructure to support the R language within a number of tools, technologies and platforms. Microsoft R Open Initially distributed by Revolution as Revolution R Open and after acquisition in 2015 the free to own and distribute version of R was rebranded Microsoft R Open. The current release is based on R-3.3.3 (with new distributions coming out a month following the CRAN version update). In addition to the total compatibility with the…

Read More Read More

Reading and Writing Delimited Files in .Net Core

Reading and Writing Delimited Files in .Net Core

I often need to read and write files in delimited files from within a .Net Core application. It seems that there is no inbuilt parser for doing this so I wrote one. The code consists of a single static class “DelimtedFile” that has two methods, one to read a delimited file and one to write one.