roenxi 14 hours ago

I'd class this website as good if you want to make a visual impact, but giving subtly bad advice if you want to visualise data.

Looking at the selection for proportions [0] there are things like circle packing or bubble maps presented as options. These are terrible ways to encode visual data if the intent is for the audience to actually take an interest in the data itself. Humans are really bad at interpreting the relative size of areas, especially circles. They really only make sense if the intent is to wow the audience that you have data and design skills, then everyone moves on without asking tough questions. Fair enough, sometimes that is the right thing to do, but it isn't a good way to visualise data. Use bars.

[0] https://datavizcatalogue.com/search/proportions.html

tunesmith 18 hours ago

I came across another one a while back I wish I had bookmarked, it was old style html just from a greybeard dataviz expert, and it was basically an exhaustive description of what to use in what situations, and it was chock full of advice that was both counterintuitive and obvious in hindsight... what was great about it is it focused on the data type first, and only recommended the viz styles at the end.

  • arrosenberg 2 hours ago

    Not sure about the website, but the guy was probably Edward Tufte from the description. He and Stephen Few were kind of the OGs of data visualization for the modern era.

    https://www.edwardtufte.com/

  • xtiansimon 6 hours ago

    “greybeard dataviz expert”

    Is this a reference to age alone, or some particular attitude or propensity for outdated methods? Or is this description for wizards?

  • davnn 12 hours ago

    Maybe you refer to [1]? These are the two options I like to show students who first get in touch with data visualization.

    [1] https://www.data-to-viz.com/

    Note: In the about page, they provide an extensive list of historical chart classification schemes :).

    • amai 7 hours ago

      Unfortunately this one isn't easy to navigate on mobile.

sarajevo a day ago

Ads were way too aggressive on iOS, pop up videos interfered with the use. I have a genuine interest in the topic but the ads just made my trust dissipate under a minute.

dataspun a day ago

Good potential, appreciate the organization of topics but not the ads and clickbait stuff.

  • rcpt a day ago

    It'd be a better site as a single page listing all the charts types (like seaborn docs) but then you wouldn't have to click past two ads to see what a box-and-whisker plot looks like

    • ayhanfuat a day ago

      A better version is here: https://datavizproject.com/

      • sizzle 20 hours ago

        One of my favorites, easy to navigate visually!

      • motohagiography a day ago

        i disagree that this is better because the OP is about why you would choose a given viz and what it actually expresses usefully, where this example is just pictures people can fit their data to for slides.

        direction matters. most sankey diagrams could be pie charts (eg the birthday sankey) and dumb usages discredit useful viz techniques.

        nested boxes are usually trees, and mixed nested boxes with lines without symmetry are almost always lazy reasoning or bullshit. start with symmetry and intent and it will be apparent.

        • NicuCalcea a day ago

          Click the header menu buttons.

felipesabino a day ago

What would you recommend for a series of events over time, where events can also link to other events?

Similar to a graph of nodes with a time component.

I have been scratching my head around this visualization problem it has been some time, and still haven’t found anything that would be applicable

  • hyperG 8 hours ago

    Temporal graph visualization is quite lacking. It probably depends what one time slice of your network looks like.

    If you have 10 to 20 nodes without a ton of edges you could use a fixed circular layout for the nodes on a timeline that just the edges change over time.

    More than this and you start getting into hairball territory even without the changes over time. A hairball changing over time is even more useless than a hairball on its own.

    The standard force directed layout is really quite useless other than seeing the global structure of the graph. The uselessness is more obvious when you try to change it over time. I suspect the layout is so standard because the visualization looks so cool.

    Most data visualization though has this same problem. There is almost this property that the cooler and more beautiful the visualization is, the more useless it is as far as containing any insight about the data itself.

  • hotspot_one 19 hours ago

    Picture musical notation, 5 horizontal lines where the y-axis is the note (higher on the staff, higher note) and the x-axis is position in time.

    Say you have 5 event types, which occur with various frequencies over time. Plot them as dots on the staff.

    Draw lines between events which link to each other.

    If you draw the lines for the staff, they should be faint, only to help classify the event.

    And you can of course have more than 5 event types, just add more lines. Hopefully less than 20 lines, otherwise this starts to get visually very messy.

  • zub-twin 19 hours ago

    For print/static graphic? An Ishikawa diagram paired with a, probably keyed, network diagrams(s). For video or interactive there would be more flexibility. Your delivery method ultimately makes many choices for you.

  • thom 21 hours ago

    What decisions are to be made based on the data? What tasks are users working on?

  • nerdponx 21 hours ago

    Can you draw the graph and actually arrange the nodes on a timeline?

  • hammock a day ago

    Sankey diagram? Can you give an example?

  • analog31 a day ago

    logic diagrams from electronics?

sizzle 20 hours ago

Not seeing an UpSet plot?