SourceForge logo
SourceForge logo
Menu

matplotlib-users — Discussion related to using matplotlib

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
(3)
Jun
Jul
Aug
(12)
Sep
(12)
Oct
(56)
Nov
(65)
Dec
(37)
2004 Jan
(59)
Feb
(78)
Mar
(153)
Apr
(205)
May
(184)
Jun
(123)
Jul
(171)
Aug
(156)
Sep
(190)
Oct
(120)
Nov
(154)
Dec
(223)
2005 Jan
(184)
Feb
(267)
Mar
(214)
Apr
(286)
May
(320)
Jun
(299)
Jul
(348)
Aug
(283)
Sep
(355)
Oct
(293)
Nov
(232)
Dec
(203)
2006 Jan
(352)
Feb
(358)
Mar
(403)
Apr
(313)
May
(165)
Jun
(281)
Jul
(316)
Aug
(228)
Sep
(279)
Oct
(243)
Nov
(315)
Dec
(345)
2007 Jan
(260)
Feb
(323)
Mar
(340)
Apr
(319)
May
(290)
Jun
(296)
Jul
(221)
Aug
(292)
Sep
(242)
Oct
(248)
Nov
(242)
Dec
(332)
2008 Jan
(312)
Feb
(359)
Mar
(454)
Apr
(287)
May
(340)
Jun
(450)
Jul
(403)
Aug
(324)
Sep
(349)
Oct
(385)
Nov
(363)
Dec
(437)
2009 Jan
(500)
Feb
(301)
Mar
(409)
Apr
(486)
May
(545)
Jun
(391)
Jul
(518)
Aug
(497)
Sep
(492)
Oct
(429)
Nov
(357)
Dec
(310)
2010 Jan
(371)
Feb
(657)
Mar
(519)
Apr
(432)
May
(312)
Jun
(416)
Jul
(477)
Aug
(386)
Sep
(419)
Oct
(435)
Nov
(320)
Dec
(202)
2011 Jan
(321)
Feb
(413)
Mar
(299)
Apr
(215)
May
(284)
Jun
(203)
Jul
(207)
Aug
(314)
Sep
(321)
Oct
(259)
Nov
(347)
Dec
(209)
2012 Jan
(322)
Feb
(414)
Mar
(377)
Apr
(179)
May
(173)
Jun
(234)
Jul
(295)
Aug
(239)
Sep
(276)
Oct
(355)
Nov
(144)
Dec
(108)
2013 Jan
(170)
Feb
(89)
Mar
(204)
Apr
(133)
May
(142)
Jun
(89)
Jul
(160)
Aug
(180)
Sep
(69)
Oct
(136)
Nov
(83)
Dec
(32)
2014 Jan
(71)
Feb
(90)
Mar
(161)
Apr
(117)
May
(78)
Jun
(94)
Jul
(60)
Aug
(83)
Sep
(102)
Oct
(132)
Nov
(154)
Dec
(96)
2015 Jan
(45)
Feb
(138)
Mar
(176)
Apr
(132)
May
(119)
Jun
(124)
Jul
(77)
Aug
(31)
Sep
(34)
Oct
(22)
Nov
(23)
Dec
(9)
2016 Jan
(26)
Feb
(17)
Mar
(10)
Apr
(8)
May
(4)
Jun
(8)
Jul
(6)
Aug
(5)
Sep
(9)
Oct
(4)
Nov
Dec
2017 Jan
(5)
Feb
(7)
Mar
(1)
Apr
(5)
May
Jun
(3)
Jul
(6)
Aug
(1)
Sep
Oct
(2)
Nov
(1)
Dec
2018 Jan
Feb
Mar
Apr
(1)
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2020 Jan
Feb
Mar
Apr
May
(1)
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2025 Jan
(1)
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
S M T W T F S





1
(14)
2
(11)
3
(5)
4
(17)
5
(11)
6
(37)
7
(35)
8
(9)
9
(1)
10
(9)
11
(7)
12
(22)
13
(34)
14
(24)
15
(27)
16
(13)
17
(19)
18
(43)
19
(36)
20
(12)
21
(9)
22
(21)
23
(3)
24
(5)
25
(30)
26
(14)
27
(23)
28
(19)
29
(19)
30
(10)
31
(6)






Showing 18 results of 18

From: Jesper L. <jes...@gm...> - 2009年05月17日 21:04:50
Hi mpl-users,
I have a web application in which I produce png files using
matplotlib. Unfortunately the files are quite big (up to ~300 kb). I
have however tried using the Linux tool pngnq to reduce the file size
with a factor ~3-4 with almost no degradation of the result. I
therefore wondered whether it is possible to setup matplotlib to do
something similar (from the source code the savefig method for png
files does not seem to use any keyword arguments). Here is the output
of the command pnginfo for the matplotlib output file and the pngnq
processed file:
0.0.0.0.0.0.20090517t00z.768.png...
 Image Width: 768 Image Length: 328
 Bitdepth (Bits/Sample): 8
 Channels (Samples/Pixel): 4
 Pixel depth (Pixel Depth): 32
 Colour Type (Photometric Interpretation): RGB with alpha channel
 Image filter: Single row per byte filter
 Interlacing: No interlacing
 Compression Scheme: Deflate method 8, 32k window
 Resolution: 5039, 5039 (pixels per meter)
 FillOrder: msb-to-lsb
 Byte Order: Network (Big Endian)
 Number of text strings: 0 of 0
 Offsets: 0, 0
0.0.0.0.0.0.20090517t00z.768-nq8.png...
 Image Width: 768 Image Length: 328
 Bitdepth (Bits/Sample): 8
 Channels (Samples/Pixel): 1
 Pixel depth (Pixel Depth): 8
 Colour Type (Photometric Interpretation): PALETTED COLOUR (256
colours, 0 transparent)
 Image filter: Single row per byte filter
 Interlacing: No interlacing
 Compression Scheme: Deflate method 8, 32k window
 Resolution: 0, 0 (unit unknown)
 FillOrder: msb-to-lsb
 Byte Order: Network (Big Endian)
 Number of text strings: 0 of 0
 Offsets: 0, 0
I am not using transparency for anything. For a web application a
reduction from 300 kb to 90 kb is really important so I hope you have
some good ideas. Otherwise I guess I will have to put in a call to
pngnq in my code (although I prefer to avoid calls to external
programs in the Python code when possible).
Best regards,
Jesper
From: Alan G I. <ala...@gm...> - 2009年05月17日 21:03:36
On 5/17/2009 2:44 PM Jae-Joon Lee apparently wrote:
> I meant consistency with Matplotlib itself.
My point is that that is not well defined,
since most of the OO API in Matplotlib is
Python centric, but the subplot definition
is an exception.
So I am suggesting that any new functions
certainly should not propagate this anomaly.
 > I agree and I'm personally for python-centric interface throughout matplotlib.
 > I think what we need is to devise a new python-centric interface
 > (e.g., subplot2grid you suggested) and may try to deprecate subplot
 > eventually.
So, looking forward, keeping that anomaly isolated
will be important, so that changes do not need to
be made in additional locations. (Or so I claim...)
Cheers,
Alan Isaac
From: Gökhan S. <gok...@gm...> - 2009年05月17日 20:40:49
Hmm,
Is it working on your side from a bash shell as "ipython --pylab script
argument"
I couldn't make it work in this fashion. As I said whos list nothing :(
I am on Fedora 10 x86, Python 2.5.2, IPython 0.10.bzr.r1173
Without the pylab switch I see the interactive space with variables. I also
have plot imported from my script, however each time I have to call show()
to see the figure to be re-drawn.
To me, it seems one need to compromise: either to start ipython --pylab
first and call scripts using "run" magic command or like you suggested start
ipython with the script loaded and call show() after each plot command.
Please comment me if I am wrong...
Gökhan
On Sun, May 17, 2009 at 3:19 PM, Roy Hyunjin Han <
sta...@gm...> wrote:
> On Sun, May 17, 2009 at 2:17 PM, Gökhan SEVER <gok...@gm...>
> wrote:
> > Hello Roy,
> >
> > "ipython splot.py 09_03_23_11_44_54.stats.tas"
> >
> > works, but I can't make it work with pylab switch. It executes my script,
> > however whos list an empty namespace :(
>
> Gökhan,
>
> The "whos" command works for me.
>
> Also, why can't you use "import pylab" and make your plots directly in
> ipython?
> You can also use "from pylab import *" if you don't want to type pylab
> every time.
>
> In [1]: whos
> Variable Type Data/Info
> ----------------------------------------------------
> argv list ['splot.py',
> '09_03_23_11_44_54.stats.tas']
> argv_arr ndarray 12x13: 156 elems, type
> `float64`, 1248 bytes
> axes function <function axes at 0x92b6064>
> axis function <function axis at 0x92b6294>
> boxplot function <function boxplot at 0x92b6924>
> d09_03_23_11_44_54_stats_tas ndarray 12x13: 156 elems, type
> `float64`, 1248 bytes
> data_len int 12
> draw function <function draw at 0x9212dbc>
> f file <closed file
> '09_03_23_11<...>', mode 'r' at 0x88ef260>
> i int 11
> loadtxt function <function loadtxt at 0x8b65304>
> mouse_hover_formatx function <function
> mouse_hover_formatx at 0x88e84fc>
> mouse_hover_formaty function <function
> mouse_hover_formaty at 0x88e84c4>
> plot function <function plot at 0x92b6cdc>
> savefig function <function savefig at 0x9212df4>
> show function <function show at 0x920f72c>
> skiprows int 30
>
From: Roy H. H. <sta...@gm...> - 2009年05月17日 20:19:25
On Sun, May 17, 2009 at 2:17 PM, Gökhan SEVER <gok...@gm...> wrote:
> Hello Roy,
>
> "ipython splot.py 09_03_23_11_44_54.stats.tas"
>
> works, but I can't make it work with pylab switch. It executes my script,
> however whos list an empty namespace :(
Gökhan,
The "whos" command works for me.
Also, why can't you use "import pylab" and make your plots directly in ipython?
You can also use "from pylab import *" if you don't want to type pylab
every time.
In [1]: whos
Variable Type Data/Info
----------------------------------------------------
argv list ['splot.py',
'09_03_23_11_44_54.stats.tas']
argv_arr ndarray 12x13: 156 elems, type
`float64`, 1248 bytes
axes function <function axes at 0x92b6064>
axis function <function axis at 0x92b6294>
boxplot function <function boxplot at 0x92b6924>
d09_03_23_11_44_54_stats_tas ndarray 12x13: 156 elems, type
`float64`, 1248 bytes
data_len int 12
draw function <function draw at 0x9212dbc>
f file <closed file
'09_03_23_11<...>', mode 'r' at 0x88ef260>
i int 11
loadtxt function <function loadtxt at 0x8b65304>
mouse_hover_formatx function <function
mouse_hover_formatx at 0x88e84fc>
mouse_hover_formaty function <function
mouse_hover_formaty at 0x88e84c4>
plot function <function plot at 0x92b6cdc>
savefig function <function savefig at 0x9212df4>
show function <function show at 0x920f72c>
skiprows int 30
From: Jae-Joon L. <lee...@gm...> - 2009年05月17日 19:21:08
> Oops, sorry about that. Looks like I have it fixed now.
>
> JDH
>
Yes, it looks fine now.
Thanks!
-JJ
From: Magnus B. <mag...@go...> - 2009年05月17日 18:51:56
> Magnus Benjes wrote:
>> Hello,
>> in version 0.98.5.2 the polar plot still has a problem with negativ 
>> angles.
>> The polarplot is drawing a circle when the angle changes from negativ to 
>> positiv (e.g. from -0.01 to +0.01).
>
> Your example works fine with svn. I don't recall whether the problem was 
> fixed before the last release. I think it was.
>
Thank you for the hint, in version 0.98.6 the polar plot has no problems 
with negativ angles any more.
But now there are only gridlines in radial direction and the gridlines in 
angular direction are missing.
Magnus 
From: Gökhan S. <gok...@gm...> - 2009年05月17日 18:17:38
Hello Roy,
"ipython splot.py 09_03_23_11_44_54.stats.tas"
works, but I can't make it work with pylab switch. It executes my script,
however whos list an empty namespace :(
My aim of loading the variables and results into an interactive pylab
enabled workspace is to be able to continue working on the same data and if
necessary make some manipulations like adding titles, labels, legends,
changing scales depends on a person's need.
According to IPython documentation it is also possible to make IPython as
the default python environment. (
http://ipython.scipy.org/doc/nightly/html/interactive/reference.html#ipython-as-your-default-python-environment)
And again no way of starting with pylab ("there is no way to pass IPython
any command-line options")
Any other ideas?
Btw, I haven't seen a blue star lately :)
Gökhan
On Sun, May 17, 2009 at 7:07 AM, Roy Hyunjin Han <
sta...@gm...> wrote:
> On Sat, May 16, 2009 at 4:34 PM, Gökhan SEVER <gok...@gm...>
> wrote:
> >>> However I still couldn't figure out how to drop in ipython from the
> bash shell call
> >>> while all my variable context visible in the ipython namespace.
>
>
> Gökhan,
>
> Have you tried the following?
>
> RHH
>
>
> $ ipython splot.py 09_03_23_11_44_54.stats.tas
> Python 2.5.2 (r252:60911, Sep 30 2008, 15:41:38)
> Type "copyright", "credits" or "license" for more information.
>
> IPython 0.8.4 -- An enhanced Interactive Python.
> ? -> Introduction and overview of IPython's features.
> %quickref -> Quick reference.
> help -> Python's own help system.
> object? -> Details about 'object'. ?object also works, ?? prints more.
>
> In [1]: skiprows
> Out[1]: 30
>
From: Eric F. <ef...@ha...> - 2009年05月17日 17:20:14
Magnus Benjes wrote:
> Hello,
> in version 0.98.5.2 the polar plot still has a problem with negativ angles.
> The polarplot is drawing a circle when the angle changes from negativ to 
> positiv (e.g. from -0.01 to +0.01).
Your example works fine with svn. I don't recall whether the problem 
was fixed before the last release. I think it was.
> 
> But in "What new in 0.98.4" 
> (http://matplotlib.sourceforge.net/users/whats_new.html) I can read:
> "Fix polar interpolation to handle negative values of theta - MGD"
I think that commit actually introduced the problem.
> 
> Is there a workaround for this problem?
A release appears to be imminent--it was tagged hours ago. Can you 
update when it appears?
Eric
> 
> Regards
> Magnus
> 
> ********************
> import numpy as np
> import matplotlib
> import matplotlib.pyplot as plt
> 
> x = np.linspace(-np.pi/3, np.pi/3, 100)
> y = np.sin((10*x)**2)+2
> 
> plt.subplot(111, polar=True)
> plt.plot(x,y)
> plt.title(matplotlib.__version__)
> plt.show()
> 
> 
> 
> 
> ------------------------------------------------------------------------
> 
> ------------------------------------------------------------------------------
> Crystal Reports - New Free Runtime and 30 Day Trial
> Check out the new simplified licensing option that enables 
> unlimited royalty-free distribution of the report engine 
> for externally facing server and web deployment. 
> http://p.sf.net/sfu/businessobjects
> 
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
From: Alan G I. <ala...@gm...> - 2009年05月17日 15:44:40
On 5/17/2009 11:11 AM Linda_swe apparently wrote:
> ("total size of new array must be unchanged")
Again, this means what it says.
Your data array is the wrong size.
You cannot for example reshape a (3,) array into a (2,2) array.
http://www.scipy.org/Numpy_Example_List_With_Doc#head-11717acafb821da646a8db6997e59b820ac8761a
You can contour any 2d array.
You can optionally supply 1d coordinates.
http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.contourf
>>> import matplotlib.pyplot as plt
>>> import numpy as np
>>> plt.contour(np.add.outer(np.arange(20),np.arange(20)))
<matplotlib.contour.ContourSet instance at 0x019BF4B8>
>>> plt.show()
Alan Isaac
From: Linda_swe <po...@mt...> - 2009年05月17日 15:11:17
Hi Alan,
Thanks and it works for y and x but i guess i dont know how to shapet Z
("total size of new array must be unchanged")
Overall i just dont get it how to calcuate the nlons and nlats fro Z.
yre = np.reshape(lats,nlats) 
xre = np.reshape(lons,nlons) 
print yre
print xre
zre = np.reshape(values,(nlats,nlons)).transpose() 
CT = plt.contourf(xre, yre, zre,58,cmap=plt.cm.jet)
cbar = plt.colorbar()
plt.show()
AlanIsaac wrote:
> 
> On 5/17/2009 10:21 AM Linda_swe apparently wrote:
>> atlest give me a hint...
> 
> The hint:
> 
>> error:list object has no attribute reshape
> 
> Listen to Python: all the info is there.
> A list is not a numpy array.
> Don't treat it like one.
> 
> However you can do:
> numpy.reshape(mylist, myshape)
> 
> Alan Isaac
> 
> ------------------------------------------------------------------------------
> Crystal Reports - New Free Runtime and 30 Day Trial
> Check out the new simplified licensing option that enables 
> unlimited royalty-free distribution of the report engine 
> for externally facing server and web deployment. 
> http://p.sf.net/sfu/businessobjects
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
> 
> 
-- 
View this message in context: http://www.nabble.com/Colormap-using-%28UV%29coordinates-from-file-tp23572972p23584266.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
From: Alan G I. <ala...@gm...> - 2009年05月17日 14:31:41
On 5/17/2009 10:21 AM Linda_swe apparently wrote:
> atlest give me a hint...
The hint:
> error:list object has no attribute reshape
Listen to Python: all the info is there.
A list is not a numpy array.
Don't treat it like one.
However you can do:
numpy.reshape(mylist, myshape)
Alan Isaac
From: Linda_swe <po...@mt...> - 2009年05月17日 14:21:36
Why dont anyone answer me???
atlest give me a hint...
Ok, so i want to use the my csv as input and then plot the contour. I have
the follwing code but gives
error:list object has no attribute reshape
is using list diffrent than using numpys loadtext and then into variables
???
from matplotlib.mlab import load
import matplotlib.pyplot as plt 
import numpy as np
import csv
portfolio = csv.reader(open("file.csv", "rb"))
portfolio_list = []
portfolio_list.extend(portfolio)
lats = []
lons = []
values=[]
for data in portfolio_list:
 lats.append(data[0])
 lons.append(data[1])
 values.append(data[2])
print lats
print lons
nlats = len(lats)
nlons = len(lons)
yre = lats.reshape(nlats,nlons)
xre = lons.reshape(nlats,nlons)
zre = values.reshape(nlats,nlons)
#### later in the defined map
CT = plt.contourf(xre, yre, zre, cmap=color_map)
cbar = plt.colorbar()
plt.show()
-- 
View this message in context: http://www.nabble.com/Colormap-using-%28UV%29coordinates-from-file-tp23572972p23583803.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
From: John H. <jd...@gm...> - 2009年05月17日 12:28:02
On Sat, May 16, 2009 at 10:58 PM, Jae-Joon Lee <lee...@gm...> wrote:
>> http://matplotlib.sourceforge.net/mpl_toolkits/axes_grid/users/overview.html#rgb-axes
>
> Thanks a lot, John.
> However, example figures are missing currently. (instead it shows a
> message "Exception occurred rendering plot.").
> Also, API documentations are not correctly generated also. My quick
> guess is that the axes_grid module was not found during the sphinx
> run. Can you take a look? The documentation builds fine for me.
Oops, sorry about that. Looks like I have it fixed now.
JDH
From: Pauli V. <pa...@ik...> - 2009年05月17日 12:00:11
2009年5月17日 00:15:48 -0400, Jae-Joon Lee wrote:
> On Sat, May 16, 2009 at 6:58 PM, 
> <jor...@ya...> wrote:
>>
>> Hi,
>> I want to read images and do some processing with them. While learning
>> how to do this, i.e. opening images, displaying them, transforming them
>> tu numpy arrays, etc., I came across a strange behaviour. If I open an
>> image and use imshow() to display it, it comes upside down. See this
>> thread in the numpy mailing list for more details:
>> http://thread.gmane.org/gmane.comp.python.numeric.general/30148 .
>> Someone on that list suggested to check here if this behavior was
>> correct. Is it normal that the image appears upside down? If yes, can
>> someone explain what's going on?
> 
> Note that the image may be upside down for you but may be correct for
> others. The array itself does not know about the orientation of the
> image and you have to explicitly specify this.
I think the point here is that
	img = Image('foo.png')
	imshow(img)
and
	img = Image('foo.png')
	imshow(asarray(img))
give different results, since matplotlib.image.pil_to_array functions 
differently from what PIL exposes in __array_interface__
-- 
Pauli Virtanen
From: Magnus B. <mag...@go...> - 2009年05月17日 06:52:33
Hello,
in version 0.98.5.2 the polar plot still has a problem with negativ angles. 
The polarplot is drawing a circle when the angle changes from negativ to positiv (e.g. from -0.01 to +0.01).
But in "What new in 0.98.4" (http://matplotlib.sourceforge.net/users/whats_new.html) I can read:
"Fix polar interpolation to handle negative values of theta - MGD"
Is there a workaround for this problem?
Regards
Magnus
********************
import numpy as np
import matplotlib
import matplotlib.pyplot as plt
x = np.linspace(-np.pi/3, np.pi/3, 100)
y = np.sin((10*x)**2)+2
plt.subplot(111, polar=True)
plt.plot(x,y)
plt.title(matplotlib.__version__)
plt.show()
From: Jae-Joon L. <lee...@gm...> - 2009年05月17日 04:15:50
On Sat, May 16, 2009 at 6:58 PM, <jor...@ya...> wrote:
>
> Hi,
> I want to read images and do some processing with them. While learning how to do this, i.e. opening images, displaying them, transforming them tu numpy arrays, etc., I came across a strange behaviour. If I open an image and use imshow() to display it, it comes upside down. See this thread in the numpy mailing list for more details: http://thread.gmane.org/gmane.comp.python.numeric.general/30148 . Someone on that list suggested to check here if this behavior was correct. Is it normal that the image appears upside down? If yes, can someone explain what's going on?
Note that the image may be upside down for you but may be correct for
others. The array itself does not know about the orientation of the
image and you have to explicitly specify this.
For imshow (and other similar commands), use the origin keyword. e.g.,
 >>> imshow(a, origin="lower")
http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.imshow
-JJ
>
> jorge
>
>
>
>
>
> ------------------------------------------------------------------------------
> Crystal Reports - New Free Runtime and 30 Day Trial
> Check out the new simplified licensing option that enables
> unlimited royalty-free distribution of the report engine
> for externally facing server and web deployment.
> http://p.sf.net/sfu/businessobjects
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
From: Jae-Joon L. <lee...@gm...> - 2009年05月17日 04:08:37
On Fri, May 15, 2009 at 10:02 PM, John Hunter <jd...@gm...> wrote:
> When you are extending/fixing existing code and come across methods
> with no docs, could you write a one or two line doc string for them?
> I wrote many of these and at the time they were so obvious that they
> didn't need docstrings, but as time passes and I reencounter them, I
> wish there was a simple line explaining them. As you are digging
> through the code figuring them all out, it is a great time to drop in
> a simple one-liner docstring (eg explaining what coord system is being
> returned by _get_position_xy). As the famous coding quip says, the
> literal wording or author of which I cannot dig up right now, "Leave
> comments in your code -- someone may read it someday, and that someone
> may be you!"
Sure, I'll keep that in mind.
I'll revise the patch (I'll also think about the contains method) and
submit it soon.
Thanks,
-JJ
From: Jae-Joon L. <lee...@gm...> - 2009年05月17日 03:58:57
On Fri, May 15, 2009 at 10:10 PM, John Hunter <jd...@gm...> wrote:
> FYI, several weeks ago I updated the official site-docs after you
> contributes the axes grid toolkit and docs:
>
> http://matplotlib.sourceforge.net/mpl_toolkits/axes_grid/users/overview.html#rgb-axes
Thanks a lot, John.
However, example figures are missing currently. (instead it shows a
message "Exception occurred rendering plot.").
Also, API documentations are not correctly generated also. My quick
guess is that the axes_grid module was not found during the sphinx
run. Can you take a look? The documentation builds fine for me.
Regards,
-JJ
1 message has been excluded from this view by a project administrator.

Showing 18 results of 18

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /