3
votes

The response from a call to the blpapi in Julia is type Array{Nullable,n}. I'd like to be able to work with the data (plot it, math operate on it). How can I get around each data point being type Nullable? Is there a way to convert to Float64?

1
Suppose v is the Nullable Array, then get.(v) should be a regular Array of the values (of course, there should not be #NULL values in v) - Dan Getz
That's it! Thank you very much. - mattsurw

1 Answers

1
votes

Thanks to Dan Getz for this.

"Suppose v is the Nullable Array, then get.(v) should be a regular Array of the values (of course, there should not be #NULL values in v)."