@@ -2944,7 +2944,7 @@ def bar3d(self, x, y, z, dx, dy, dz, color=None,
2944
2944
return col
2945
2945
2946
2946
@_preprocess_data ()
2947
- def bar3d_grid (self , x , y , z , dxy = '0.8' , z0 = 0 , ** kws ):
2947
+ def bar3d_grid (self , x , y , z , dxy = '0.8' , z0 = 0 , ** kwargs ):
2948
2948
"""
2949
2949
Generate a 3D barplot.
2950
2950
@@ -2983,7 +2983,7 @@ def bar3d_grid(self, x, y, z, dxy='0.8', z0=0, **kws):
2983
2983
(rectangular prisms).
2984
2984
"""
2985
2985
2986
- bars = art3d .Bar3DCollection (x , y , z , dxy , z0 , ** kws )
2986
+ bars = art3d .Bar3DCollection (x , y , z , dxy , z0 , ** kwargs )
2987
2987
self .add_collection (bars )
2988
2988
2989
2989
# compute axes limits
@@ -2996,7 +2996,7 @@ def bar3d_grid(self, x, y, z, dxy='0.8', z0=0, **kws):
2996
2996
return bars
2997
2997
2998
2998
@_preprocess_data ()
2999
- def hexbar3d (self , x , y , z , dxy = '0.8' , z0 = 0 , ** kws ):
2999
+ def hexbar3d (self , x , y , z , dxy = '0.8' , z0 = 0 , ** kwargs ):
3000
3000
"""
3001
3001
This method creates three-dimensional barplot with hexagonal bars for a
3002
3002
regular xy-grid on the same level z-plane. Height, and color of the
@@ -3032,7 +3032,7 @@ def hexbar3d(self, x, y, z, dxy='0.8', z0=0, **kws):
3032
3032
(hexagonal prisms).
3033
3033
"""
3034
3034
3035
- bars = art3d .HexBar3DCollection (x , y , z , dxy , z0 , ** kws )
3035
+ bars = art3d .HexBar3DCollection (x , y , z , dxy , z0 , ** kwargs )
3036
3036
self .add_collection (bars )
3037
3037
3038
3038
# compute axes limits
0 commit comments