Giter Site home page Giter Site logo

Comments (24)

priisdk avatar priisdk commented on May 4, 2024 37

Is there any news on this issue?
I would also greatly appreciate something like "equal_axes=True", "axes('equal')" or "set_aspectratio=1" in a 2D plot with plotly.
Has it been implemented? If yes, what exactly is the syntax?

from plotly.py.

bcdunbar avatar bcdunbar commented on May 4, 2024 6

Example of fixed ratio here https://plot.ly/python/axes/#fixed-ratio-axes and reference info here https://plot.ly/python/reference/#layout-xaxis-scaleanchor

from plotly.py.

astrojuanlu avatar astrojuanlu commented on May 4, 2024 6

...although fig['layout'].update(scene=dict(aspectmode="data")) did the trick!

from plotly.py.

etpinard avatar etpinard commented on May 4, 2024 4

What about making 'autosize' support True, False, and 'equal-axis' values?

(which would require modifications on our backend)

from plotly.py.

akhmerov avatar akhmerov commented on May 4, 2024 4

Just for those who find this deserted place via google, I found that manually setting the plot aspect ratio through height and width is an acceptable (although fragile) workaround.

from plotly.py.

dragoljub avatar dragoljub commented on May 4, 2024 3

I ended up using this to get it working to my needs:

fig['layout'].update(scene=dict(
    aspectmode='manual',
    aspectratio=go.layout.scene.Aspectratio(
       x=x.ptp(), y=x.ptp()/y.ptp(), z=z.pyp()/x.ptp()*100)
    )))

This gives me X & Y axis on the same pixel scale and then I can tune the Z scale by a multiple while keeping the ticks on the X,Y,Z axis in the correct data scale.

from plotly.py.

priisdk avatar priisdk commented on May 4, 2024 2

Can someone please give a simple example of a scatter plot with fixed ratio on zoom?

from plotly.py.

jackparmer avatar jackparmer commented on May 4, 2024 1

Part of this issue is solved in the latest version of plotly.js via this "Axis Constraints" PR - plotly/plotly.js#1522 - which enables optional fixed aspect ratio on zoom.

The other feature brought up in this issue (coordinated zoom on subplots sharing an axis) would also need to be solved in plotly.js. Issue here: plotly/plotly.js#1549

Any companies interested in sponsoring this?
https://plot.ly/products/consulting-and-oem/

from plotly.py.

astrojuanlu avatar astrojuanlu commented on May 4, 2024 1

The fig['layout'].update(width=500, height=500, autosize=False) trick is not working as expected for me, so I will have to manually set the aspect ratio of each axis (x, y, z) or do some other thing. It would be great to have this in plotly!

from plotly.py.

theengineear avatar theengineear commented on May 4, 2024

@chriddyp, thoughts? This is a common one, especially for heatmaps/contour plots. Here are a couple of ways we might implement this:

  1. use a setter function (we're sort of opposed to this one since it's less declarative, less intuitive where it can be used. I.E. should this be a method for a Figure or Layout?)
  2. have users just use fig['layout'].update(width=500, height=500, autosize=False)
  3. throw it in the plot call, py.plot(fig, equal_axes=True)

I'd probably lean towards better documenting (2), but would consider (3). In addition, it would probably be a good idea to write in some logic that sets auto*=False whenever the appropriate keys are properly filled in, e.g., both width and height.

@arsenovic, it seems like you were maybe thinking of (1), do either (2) or (3) work for you?

from plotly.py.

arsenovic avatar arsenovic commented on May 4, 2024

it may be too greedy, but ideally you can have the graph auto-sizeable, but retain squareness. so whenever one width or height changes the other does too.

of the above options (3) is nice. (2) is a no so good, because the concepts of aspect ratio and size should be independent.

from plotly.py.

theengineear avatar theengineear commented on May 4, 2024

I see, yeah. It would be annoying for a user to have to decide before hand how big they want the final image...

@alexcjohnson, is there currently a way to let Plotly pick the size, but retain the aspect ratio?

I could imagine it would be useful for users to set something like:

{
  "layout": 
    {
      "height": 1,
      "width": 2,
      "dimension": "ratio",
      "autosize": false
    }
}

Where dimension could have "ratio", "pixels". We'd keep "autosize" to mean absolutely let Plotly chose the dimensions, i.e., you wouldn't get the requested aspect ratio unless "autosize": false.

from plotly.py.

alexcjohnson avatar alexcjohnson commented on May 4, 2024

Interesting, we can't do this now but it could definitely be a useful feature. Also seeing @arsenovic on here (howdy!) reminds me we'll need something similar for axes, if you want to enforce a particular aspect ratio as you zoom around - like for smith charts and maps.

The other thing I've been pondering re: autosize is some sort of responsive mode, where the fonts, margins, line widths, marker sizes... get adjusted as the size changes. Maybe linearly, (in the minimum dimension?) maybe something more sophisticated. Would be useful for publishers who want a responsive layout (they'll have to resize their iframe in javascript but then we can redraw the plot appropriately). Thoughts?

from plotly.py.

dab3-2014 avatar dab3-2014 commented on May 4, 2024

Hi...I would like to help implementing solution # 3 in 2nd post, this one:
3.throw it in the plot call, py.plot(fig, equal_axes=True)

So would it be possible if some one more familiar with the code let us know a good point to start to implement this option in the plot function? It would be great if you point us in the right direction.

from plotly.py.

chriddyp avatar chriddyp commented on May 4, 2024

@dab3-2014 - I think we're going to stay away from #3 but instead for people to set width and height in layout. My thought is that setting the size and the aspect ratio is setting the same number of things as setting the width and the height, so I don't see enough benefit at this point.

from plotly.py.

SimonBiggs avatar SimonBiggs commented on May 4, 2024

@chriddyp - An example of where axis equal would be a huge benefit is in what I am using plotly for right now:
https://plot.ly/~SimonBiggs/113/bivariate-quadratic-spline-fit-using-the-parameters-equivalent-width-and-equival/

Since the width and length axis are equivalent to one another, if I zoom in on the right hand plot the aspect ratio should be preserved. As a result both plots should zoom in together and mirror one another. That is not the case currently.

This can be repeated by drawing a rectangle zoom on the contour plot within the second subplot on the right. Observe that aspect ratio is lost, and that the first subplot on the left mirrors the action in a nonsense manner.

Any deviation from the width and length parameters not being equal provides a misleading representation in this geometric case.

from plotly.py.

akhmerov avatar akhmerov commented on May 4, 2024

Is there any update on this? The milestone is definitely not up to date.

We've encountered this issue trying to plot honeycomb lattice over here. Funnily 3D plotting has equal aspect ratios automatically (for no obvious reason).

from plotly.py.

lmannering avatar lmannering commented on May 4, 2024

echoing @akhmerov 's comment - is there any update on this?

from plotly.py.

lmannering avatar lmannering commented on May 4, 2024

A square plot area is seems difficult to achieve (perhaps I'm missing something) with a colorbar visible.

from plotly.py.

tachim avatar tachim commented on May 4, 2024

+1, this screws up any attempt at visualizing things like surface normals in 3D point clouds

from plotly.py.

tachim avatar tachim commented on May 4, 2024

@akhmerov can you elaborate on your solution?

from plotly.py.

akhmerov avatar akhmerov commented on May 4, 2024

@tachim I don't remember anymore, it's been a while. Everything we've done is in https://github.com/adriaanvuik/solid_state_physics

from plotly.py.

dragoljub avatar dragoljub commented on May 4, 2024

@Juanlu001 thanks for the layout trick. Any idea how to change the scale of the Z axis (without multiplying)? Basically X/Y axis are on same pixel scale and Z is on another scale.

from plotly.py.

astrojuanlu avatar astrojuanlu commented on May 4, 2024

@dragoljub you're welcome! does plotly/documentation#1182 answer your question?

from plotly.py.

Related Issues (20)

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.