Can you set target lines in a scatterplot?

Hi,

 

I would like to set target lines on the y and x-axis within the scatterplot but haven't found anything on that topic. I would like to devide where my data falls in into the 4 quadrants. Or do I have to use a different chart?

Comments

  • You can't gracefully add X and Y target lines AFAIK.  but what you could do is create a beastmode 

     

    case

    when x >= 50 and y >= 30 then 'q1'

    when x < 50 and y >= 30 then 'q2'

    when x >=50 and y>= 30  then 'q3

    else 'q4'

    end

     

    Jae Wilson
    Check out my 🎥 Domo Training YouTube Channel 👨‍💻

    **Say "Thanks" by clicking the ❤️ in the post that helped you.
    **Please mark the post that solves your problem by clicking on "Accept as Solution"
This discussion has been closed.