We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The CSV exporter should produce "column-wise" not "row-wise" data. This would be much more useful, for further analysis in Excel,R, etc.
Currently:
1992; 1993; 1994 121; 122; 123
1992; 1993; 1994
121; 122; 123
After correction: 1992; 121 1993; 122 1994; 123
1992; 121
1993; 122
1994; 123
Perhaps some header would be also nice, say:
Year;JudgmentCount 1992; 121 1993; 122 1994; 123
Year;JudgmentCount
The text was updated successfully, but these errors were encountered:
Closes #953: Change csv generation from chart data
93e8901
Closes #953: Correct tests and javadocs
bbcb8d2
Closes #953: Organize imports
77d0fe3
Closes #953: CR response
5d2d215
afa5dd6
madryk
No branches or pull requests
The CSV exporter should produce "column-wise" not "row-wise" data.
This would be much more useful, for further analysis in Excel,R, etc.
Currently:
1992; 1993; 1994
121; 122; 123
After correction:
1992; 121
1993; 122
1994; 123
Perhaps some header would be also nice, say:
Year;JudgmentCount
1992; 121
1993; 122
1994; 123
The text was updated successfully, but these errors were encountered: