• Thwompthwomp@lemmy.world
    link
    fedilink
    English
    arrow-up
    13
    ·
    9 hours ago

    Oh this touches close to him. I got into pgfplots since it would generate plots in latex at compile time and keep fonts consistent, etc. plots looked amazing though.

    The worst was when a colleague couldn’t get a pdf to upload into a google doc, so he just made an ugly ass bar chart in excel for the final draft since that was easier. The only reason he could do that so quickly was because he could read the data so easily from the plot I made. Ugh. Still burns

  • Waterdoc@lemmy.ca
    link
    fedilink
    English
    arrow-up
    23
    arrow-down
    3
    ·
    12 hours ago

    R with the tidyverse package is amazing once you get over the learning curve. It’s so much easier to simply type a few lines of code then to fiddle with the Excel GUI, plus the ability to customize the plot is much, much better in R.

    Yes making a simple plot in Excel is relatively easy, but try making something evening remotely complex and it’s terrible. A box plot is a great example of this, 2 lines of plotting code in R for a basic plot but an absolute nightmare to create in Excel.

    • Tar_Alcaran@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      8
      ·
      12 hours ago

      Afaik, you can’t even make a box plot on excel without 3rd party plugins. You can maybe hack together one with a bar chart, and hiding/narrowing parts of it so that it sort of resembles a box plot if you never ever open the data.

  • Geodad@lemm.ee
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    1
    ·
    9 hours ago

    Why not just cut to the chase and do it in Libre Office Calc?

  • originalfrozenbanana@lemm.ee
    link
    fedilink
    English
    arrow-up
    44
    ·
    14 hours ago

    Hot tip - export a basic plot to svg and format it in Inkscape. OBVIOUSLY DO NOT CHANGE ANYTHING THAT MODIFIES THE DATA OR RESULTS but it’s much easier to get a consistent look and feel in Inkscape than ggplot

    • minyakcurry@monyet.cc
      link
      fedilink
      English
      arrow-up
      5
      ·
      9 hours ago

      Valid. I remember being very frustrated with ggplot’s documentation, only to realize they HARD CODED a plot parameter that could not be accessed. Matplotlib + Seaborn works fantastic, and I can do whatever I want without being babied by ggplot

      • Gebruikersnaam@lemmy.ml
        link
        fedilink
        English
        arrow-up
        4
        ·
        12 hours ago

        Use plotnine if you want a ggplot-like API. Matplotlib is too low level for most stuff so it needs an abstraction layer such as plotnine or seaborn. Also, I understand the original devs desire to copy Matlab plotting standards, but that language is so bad.

  • poinck@lemm.ee
    link
    fedilink
    English
    arrow-up
    8
    ·
    14 hours ago

    I rather use the r-base plot functions for everything in R. It is more flexible especially when you need to tweak the visuals.

    • ProfessorPeregrine@reddthat.com
      link
      fedilink
      English
      arrow-up
      4
      ·
      10 hours ago

      It can also be EXTREMELY long code to do something relatively simple. I bounce between base and ggplot, and use ggh4x for some oddly difficult stuff in ggplot.

  • snek_boi@lemmy.ml
    link
    fedilink
    English
    arrow-up
    7
    ·
    14 hours ago

    Honest question: do you think this could improve with practice? Or does the ggplot workflow necessarily makes it all slower?

    • scrion@lemmy.world
      link
      fedilink
      English
      arrow-up
      9
      ·
      edit-2
      12 hours ago

      Once you have figured it out, it’s actually a nice workflow. Don’t get me wrong, when I’m not publishing a paper, I quickly forget all commands, my whole setup etc. and start from scratch, cursing a lot and retracing my steps in the history, basically re-learning the framework. I’d still never move away from ggplot2.

    • bjorney@lemmy.ca
      link
      fedilink
      English
      arrow-up
      17
      ·
      14 hours ago

      It absolutely improves with practice, and once you have settled on an aesthetic you like you can simply reuse the code, e.g. store all your color/line properties in a variable and just update each figure with that variable

      My thesis had something like 30 figures, and at multiple points I had to do things like “put these all on a log scale instead” or “whoops, data on row 143,827 looks like it was transcribed wrong, need to fix it”

      While setting everything up in ggplot took a couple hours, making those changes to 30 figures in ggplot took seconds, whereas it would have taken a monumental amount of time to do manually in excel