I uploaded a DataSet with basically two columns:
- id string
- value numeric. E.g. 12.34, 56.12, 98.13
I then created a schema
- MyId = Dataset Column “id”, random
- referenceValue = DataSet Column “value”
- randomValue = Normal Distribution mean 1, fx = this * referenceValue
This gives “error: FormattedValue can’t be coerced into BigDecimal”
I also tried using randomValue = Normal Distribution, fx = this * from_dataset(“MyDataset”, “varlue”, id: field(“MyId”)
This gives the error about “could not access blank value”, which I couldn’t workaround
It seems like the Dataset code is failing to recognize that the “value” column in my dataset are numeric values, and I don’t see a function to convert a string to a numeric value.