I am using Azure Synapse Analytics to analyse my output data using a notebook running on a Spark pool in Synapse. In the process, I have a CSV loaded (as model output) from the ADLS Gen2. One of these columns is a list of model parameters and I want to programmatically build the equation string in LaTex and print it as a part of code cell output. I tried the following way (considering it to be an example for now):
import IPython.display as disp
fr=2
disp.display(disp.Latex("$f_r = %i$ GHz"%(fr)))
As expected, the output should be the visualisation of the LaTex string. However, I receive the following output from the code cell: <IPython.core.display.Latex object>.
I am looking for some pointers to achieve the same.
Regards,
Chintan Rajvir
