Hi, I am working with the PISA report in a parquet file. If I use the view() funtion I see a tabble with some info of the meaning of each variable as in this image, but when I try to save the parquet file in other format I loose that info. Do you know any way to save the parquet as a csv or a excel file and keep that info? Thanks
Hi @Lucas11
If you can access those column descriptors as strings, then you could write them as cell comments to an Excel file using the xlsx
package. Alternatively, use the csvy
package to write a csv file with the metadata contained in a yaml-like header.