Code Monkey home page Code Monkey logo

Comments (4)

lukelbd avatar lukelbd commented on May 22, 2024

This is related to the "auto-formatting" feature; for some reason I forgot to account for 1d DataArrays. This patch (9a3d14e) seems to fix it.

from proplot.

bradyrx avatar bradyrx commented on May 22, 2024

That fixed that issue, thanks @lukelbd .

Although a new one I noticed as well (still related to xarray objects if you can reopen). proplot seems to take xarray variable names/dimension names along for the ride and auto-labels axes and titles.

A = np.random.rand(100,)
A = xr.DataArray(A, dims='time')
A.name = 'SST'
f, ax = plot.subplots(width='12cm', aspect=4)
ax.plot(A)

Screen Shot 2019-06-27 at 3 23 47 PM

Adding ax.format(xlabel='', title='') only removes the xlabel.

Screen Shot 2019-06-27 at 3 23 54 PM

from proplot.

lukelbd avatar lukelbd commented on May 22, 2024

Yep that's right, it's intended behavior in case the DataArray does not have e.g. long_name or units attributes. Do you think that is inappropriate/annoying?

You can disable autoformatting behavior by (1) obviously passing A.values instead of A to the plotting command or (2) using plot.subplots(..., autoformat=False).

from proplot.

lukelbd avatar lukelbd commented on May 22, 2024

...and now I understand the issue with not being able to reset the title specifically. This commit (c7cd02b) repairs this.

from proplot.

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.