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
I'm wondering if it makes sense to add an extra feature to group rows by a certain column, and thus structure the table in a less "noisy" way.
So if the table for example looks like:
AAA | BBB | CCC -----+-----+---- AA1 | BB1 | CC1 AA1 | BB2 | CC2 AA1 | BB3 | CC3 AA1 | BB4 | CC4 AA2 | BB2 | CC2 AA2 | BB3 | CC3 AA2 | BB4 | CC4
and we use AAA as column, then we can rewrite the table to:
AAA
AAA | BBB | CCC -----+-----+---- AA1 | BB1 | CC1 | BB2 | CC2 | BB3 | CC3 | BB4 | CC4 AA2 | BB2 | CC2 | BB3 | CC3 | BB4 | CC4
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm wondering if it makes sense to add an extra feature to group rows by a certain column, and thus structure the table in a less "noisy" way.
So if the table for example looks like:
and we use
AAA
as column, then we can rewrite the table to:The text was updated successfully, but these errors were encountered: