plotting
Here are 911 public repositories matching this topic...
Bug summary
The ax.invertxaxis() and ax.invert_yaxis() function both produce the same output, a scatterplot with a flipped X axis.
Code for reproduction
from mpl_toolkits import mplot3d
import matplotlib.pyplot as plt
ax = plt.axes(projection='3d')
plt.title("Invert Z")
ax.scatter3D(1,1,1)
# ax.invert_xaxis()
ax.invert_yaxis()
# ax.invert_zaxis()
Actual o
Tests
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
-
Updated
Jun 11, 2020 - C++
-
Updated
Oct 25, 2021 - Python
-
Updated
Sep 21, 2021 - Python
-
Updated
Oct 24, 2021 - Java
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
I think it could be useful, when one wants to plot only e.g. class 1, to have an option to produce consistent plots for both plot_cumulative_gain and plot_roc
At the moment, instead, only plot_roc supports such option.
Thanks a lot
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
What is the feature ?
I'm trying out this library for the first time and there's some places where it would be delightful to have shorthand functions:
- Shorthand functions for Pos:
Pos::top_right
,Pos::bottom_right
,Pos::bottom_center
etc.. - Short way to set colors for components. Currently, lots of boilerplate is required for e.g. white-on-black plotos
- a cool start would b
It would be nice to support adding arrow annotations to plots, similar to pyplot.arrow
(from #245).
-
Updated
Oct 25, 2021 - Python
From here: http://makie.juliaplots.org/stable/plotting_functions/heatmap.html#MakieCore.heatmap there is really no info, e.g. how to choose colormap, how to set color range.
-
Updated
Sep 21, 2021 - R
-
Updated
Sep 10, 2021 - JavaScript
This issue describes how to submit a Style
or Palette
to ScottPlot and indicates expectations for pull request.
See the Hacktoberfest 2021 issue (#1274) for additional project ideas for new contributors.
Rules f
About 50% of our docstrings in PyVista have examples. This is fairly good, especially considering that many of these objects are not publicly exposed.
However, for modules like pyvista.plotting.plotting
, it would be great to see nearly 100% coverage considering how important it is to be able to demonstrate the individual methods of the Plotting class.
This is a great first issue since it
-
Updated
Oct 20, 2021 - OCaml
-
Updated
Sep 22, 2021 - Python
As noted in this Stack Overflow question it would be good to be clear what’s going on in this function, including the equation.
-
Updated
Jun 27, 2021 - R
-
Updated
Apr 21, 2021 - Common Lisp
Improve this page
Add a description, image, and links to the plotting topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the plotting topic, visit your repo's landing page and select "manage topics."
Related to #11605:
At the moment there is no proper test to make sure that new options added to
MultiChoice
widget are implemented consistently on both sides, Python and JS.