-
DescriptionI would like to render quarto report in python by sending vectors as parameters. This example demonstrates a use case with a single number as a parameter, but I'm not sure how I can send a vector as a parameter: https://quarto.org/docs/computations/parameters.html#rendering Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Parameters use scalar (unless you use Note that as stated in the documentation, this is coming from |
Beta Was this translation helpful? Give feedback.
It needs to be YAML and there is no such thing as "data frame" or "matrix", so you need to serialise/unserialise the object.
Or use any tricks you want such as providing a file name that holds the object, etc.