Giter Site home page Giter Site logo

Comments (4)

freva avatar freva commented on August 30, 2024 1

Yes, exactly, the result of that stream is

[
    ["2024-02\n2024-01", "2\n2", "24\n21"], 
    ["2023-12\n2023-11", "2\n1", "3\n23"]
]

from ascii-table.

freva avatar freva commented on August 30, 2024

Yes, it's possible if you do the grouping and then join each cell with newline before passing the data to the library. Here's a quick example:

record Entry(YearMonth yearMonth, int a, int b) {}
List<Entry> data = List.of(
        new Entry(YearMonth.of(2024, 2), 2, 24),
        new Entry(YearMonth.of(2024, 1), 2, 21),
        new Entry(YearMonth.of(2023, 12), 2, 3),
        new Entry(YearMonth.of(2023, 11), 1, 23));

BiFunction<List<Entry>, Function<Entry, Object>, String> joiner = (entries, mapper) -> entries.stream()
        .map(e -> mapper.apply(e).toString())
        .collect(Collectors.joining("\n"));

String[][] groupedData = data.stream()
        .collect(Collectors.groupingBy(e -> e.yearMonth().getYear() + "-" + ((e.yearMonth().getMonthValue() - 1) / 2), LinkedHashMap::new, Collectors.toList()))
        .values().stream()
        .map(entries -> new String[]{joiner.apply(entries, Entry::yearMonth), joiner.apply(entries, Entry::a), joiner.apply(entries, Entry::b)})
        .toArray(String[][]::new);

System.out.println(AsciiTable.getTable(groupedData));

prints

+---------+---+----+
| 2024-02 | 2 | 24 |
| 2024-01 | 2 | 21 |
+---------+---+----+
| 2023-12 | 2 |  3 |
| 2023-11 | 1 | 23 |
+---------+---+----+

from ascii-table.

newhinton avatar newhinton commented on August 30, 2024

I can't quite figure out what your list-streaming ultimatively achieves. (It does not help that i am actually coding in kotlin. Converting to that seems to break something)

Am i correct in the understanding that you iterate the original data, group them by the first column, and then create a new "entry-object" (the map foom the goupeddata) that contains each grouping as a "single" cell where each row is just appended?

So that AsciiTable.getTable(groupedData) would recieve exactly 2 rows, given the example?

from ascii-table.

newhinton avatar newhinton commented on August 30, 2024

Thank you!

from ascii-table.

Related Issues (17)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.