Skip to content

Commit dc089f2

Browse files
remove df, series direct accessors
1 parent 2d2fcc0 commit dc089f2

File tree

2 files changed

+0
-38
lines changed

2 files changed

+0
-38
lines changed

bigframes/dataframe.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5279,25 +5279,6 @@ def bar(
52795279

52805280
bar.__doc__ = inspect.getdoc(plotting.PlotAccessor.bar)
52815281

5282-
def barh(
5283-
self,
5284-
x: typing.Optional[typing.Hashable] = None,
5285-
y: typing.Optional[typing.Hashable] = None,
5286-
**kwargs,
5287-
):
5288-
return self.plot.barh(x=x, y=y, **kwargs)
5289-
5290-
barh.__doc__ = inspect.getdoc(plotting.PlotAccessor.barh)
5291-
5292-
def pie(
5293-
self,
5294-
y: typing.Optional[typing.Hashable] = None,
5295-
**kwargs,
5296-
):
5297-
return self.plot.pie(y=y, **kwargs)
5298-
5299-
pie.__doc__ = inspect.getdoc(plotting.PlotAccessor.pie)
5300-
53015282
def scatter(
53025283
self,
53035284
x: typing.Optional[typing.Hashable] = None,

bigframes/series.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2530,25 +2530,6 @@ def bar(
25302530

25312531
bar.__doc__ = inspect.getdoc(plotting.PlotAccessor.bar)
25322532

2533-
def barh(
2534-
self,
2535-
x: typing.Optional[typing.Hashable] = None,
2536-
y: typing.Optional[typing.Hashable] = None,
2537-
**kwargs,
2538-
):
2539-
return self.plot.barh(x=x, y=y, **kwargs)
2540-
2541-
barh.__doc__ = inspect.getdoc(plotting.PlotAccessor.barh)
2542-
2543-
def pie(
2544-
self,
2545-
y: typing.Optional[typing.Hashable] = None,
2546-
**kwargs,
2547-
):
2548-
return self.plot.pie(y=y, **kwargs)
2549-
2550-
pie.__doc__ = inspect.getdoc(plotting.PlotAccessor.pie)
2551-
25522533
def _slice(
25532534
self,
25542535
start: typing.Optional[int] = None,

0 commit comments

Comments
 (0)