in reply to Team Player Timeline

Which modules/algorithms can help here?

Some kind of "plot" or "chart" module

Replies are listed 'Best First'.
Re^2: Team Player Timeline
by aartist (Pilgrim) on Jun 21, 2015 at 00:12 UTC
    Thanks. I am looking for particular algorithm or mechanism to solve this type of problem in general.

      I doubt there's "an algorithm" for what you want to do. At least nothing more specific than, "Get the data you want into a structure and display it." In the first place, it'll depend on how the data is stored: by game, by player, some other way?

      To visualize the timelines of the players focused on a particular game, my first thought is something like a candlestick graph that extends above and below a line representing the current game, where you can see how many games before and after this one a player was in. But whether that's a good choice would depend on how often players change. If players often play a single game and leave again, that'd be a pretty useless graph.

      Aaron B.
      Available for small or large Perl jobs and *nix system administration; see my home node.

        Thanks. That is a very useful direction. I am looking for some sort of flow with game number (on X axis) and Players on Y axis such that I can see a subset of N players played in window W of total games G ( For example: Games in current Year). I am developing more ideas.