berzi / uniQword

A simple program to count words in a text file and extract some statistical data from it.
1 stars 1 forks source link

[FEATURE REQUEST] CSV Export / All export #3

Open nobobo1234 opened 6 years ago

nobobo1234 commented 6 years ago

I had this idea that you could make it so that instead of a txt file, one could also export it to a simple csv file, with all the frequencies and words next to each other.

If you have more time maybe you could add a command that would export all unique word frequencies to a file. So that you don't have to type a number when you just want them all.

berzi commented 6 years ago

You can already configure the print command to print as many words as you like. Although the default is 20, you can input print 200 (for example) to get 200 words instead. Despite this, I will definitely be adding an option to print all of them.

I will also accept your suggestion on csv exports; I'll work on it when I have time.

berzi commented 6 years ago

Added option to do frequency * to get all items. This is now default on print command.

nobobo1234 commented 6 years ago

Thanks!