I have a Deedle frame in fsharp with 45 columns where every column contains floats. I'd like to create a new frame by applying a transformation to every entry in the original frame. The transformation is simple function as follows:
let minusLogOfOneLess x = -log (1.0-x)
Is there an easy way to do this?