Can FsLab/f# formatting handle arbitrary R Visualisation from 3rd party libraries?
I have been trying to include an igraph chart without success.
I can get a (very) simple graph plot to pop up out of fsi by evaluating this:
#load "packages/FsLab/Themes/DefaultWhite.fsx"
#load "packages/FsLab/FsLab.fsx"
open Deedle
open FSharp.Data
open RProvider
open RProvider.graphics
open RProvider.igraph
let grpa = R.graph__from__literal("A--B, B-c")
let pl = R.plot_igraph(grpa)
but if I try to include it in a journal with:
(*** include-value:pl ***)
I just get the output RDotNet.SymbolicExpression
included.
Am I missing something here?
(the pop up graph itself also doesn't look quite right but i guess that's a different problem!)