We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d47fa93 commit 52341c2Copy full SHA for 52341c2
lib/matplotlib.rb
@@ -35,6 +35,7 @@ class Error < StandardError
35
end
36
37
require 'matplotlib/axes'
38
+require 'matplotlib/polar_axes'
39
require 'matplotlib/figure'
40
41
PyCall.append_sys_path(File.expand_path('../matplotlib/python', __FILE__))
lib/matplotlib/polar_axes.rb
@@ -0,0 +1,6 @@
1
+module Matplotlib
2
+ class PolarAxes
3
+ include PyCall::PyObjectWrapper
4
+ wrap_class PyCall.import_module('matplotlib.projections.polar').PolarAxes
5
+ end
6
+end
0 commit comments