Skip to content
#

plotting

Here are 841 public repositories matching this topic...

Zeyuzhao
Zeyuzhao commented May 28, 2021

Problem

I would like to use named arguments in FuncAnimation.

Currently:

ani = matplotlib.animation.FuncAnimation(
  fig, update, frames=len(raw_history),
  interval=500, repeat=True, repeat_delay=1,
  fargs=(raw_history, action_history, style)
)

This would be slightly cumbersome when I change the order / type of arguments my function accepts. I could use functools to a

Open

Tests

leeoniya
leeoniya commented Dec 14, 2019

it's becoming more time-consuming and error-prone to manually re-test all the demos following internal refactorings and API adjustments.

now that the API is fleshed out a bit, it's possible to test a large amount of code (non-granularly) without having to simulate all interactions via Puppeteer or similar.

a lot of code can already be regression-tested by simply running all the demos and val

VisualMelon
VisualMelon commented Dec 28, 2020

It is currently a pain to use an OxyPlot.WinfowsForms.PlotView with a transparent background: it throws if you set its BackColor to transparent. To avoid this, it is necessary to set the ControlStyles.SupportsTransparentBackColor style to true on the PlotView; however, Control.SetStyle is protected, so consumers must resort to reflection or extending PlotView to do so. This could be

goatchurchprime
goatchurchprime commented Oct 30, 2018

I don't think this is a duplicate ticket, even though it's quite an obvious feature after that cat demo at SciPy2018.

The code that selects and renders the different geos is here in the THREE.js code
https://github.com/maartenbreddels/ipyvolume/blob/master/js/src/scatter.js#L57

I don't know quite where/how to inject the mesh definition compatible with the data file of this form, but i

kangalioo
kangalioo commented Jul 21, 2020

What is the feature ?

I'm trying out this library for the first time and I'm seeing several places where some shorthand functions would have been really pleasant:

  1. Shorthand functions for Pos: Pos::top_right, Pos::bottom_right, Pos::bottom_center etc..
  2. Short way to set colors for components. My plots are supposed to be white-on-black, which requires a lot of boilerplate on lots o
fonsp
fonsp commented May 19, 2021

In contexts like Pluto.jl, we create lots of figures at a high frequency, and the faster they can show, the smoother the experience feels. With Plots.jl + GR I never seem to get more than 15 frames per second, and I suspect (though I have not measured) that the bottleneck is here:

https://github.com/JuliaPlots/Plots.jl/blob/1ecec912a16b581f01d71c8848f6309d4ffd82fa/src/backends/gr.jl#L1889-L1896

MetPy

Improve this page

Add a description, image, and links to the plotting topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the plotting topic, visit your repo's landing page and select "manage topics."

Learn more