I'm trying to follow the examples in the DataFrame docs explaining the
ability to use a " csv"""...""" " format to import data from a string.
My data already exist in a string variable, but I am having a problem
expanding the string inside the "csv""" """ " expression.
I can write the string into a file and read the file into the df with
readtable(), but clearly this is wasteful unless there are other reasons to
have the raw data handy.
Is it possible to expand the contents of the string variable inside the
triple quotes?