Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Supported by

Exporting .csv with labels instead of values

I've been reading all of the documentation that I can, but I cannot find a way to export data from a .jasp file as a .csv file that contains the labels instead of their corresponding numerical values. There must be some way to do this, as exporting numbers that corresponds to different strings for each column seems wildly impractical.

Could someone point me in the right direction?

Comments

  • Hi sjp,

    This is more of a question for the programming team I think (I'll attend them to your post), so a discussion for our GitHub page I think

    Cheers,

    E.J.

  • Update: no, there is no way to do this currently. There is a recurrent discussion within the team, but without having reached consensus on whether and how to implement this.

    Cheers,

    E.J.

  • Hi EJ,

    Thank you for your response. I understand that this is probably more trouble than it seems. I'll post on the GitHub page.

    Best,

    sjp

  • Hi, @sip.

    I don't know if this can answer your question and serve you, but by selecting module R (beta) and a line of code like this:

    write.table (data, file="C:/your_path/your_filename.csv", quote=F, sep=",", dec=".", na = "", row.names = F, col.names = F)

    you can get your csv file with labels instead of numeric values.

    Cheers,

    Maurizio

  • Hi @MAgoJ,

    Thanks so much for posting this, it is exactly what I need.

    Best,

    sjp

Sign In or Register to comment.