Skip to content

Commit

Permalink
fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
brkyvz committed May 3, 2015
1 parent a63ad00 commit bced829
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/pyspark/sql/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -1381,17 +1381,15 @@ def cov(self, col1, col2):

cov.__doc__ = DataFrame.cov.__doc__

<<<<<<< HEAD
def crosstab(self, col1, col2):
return self.df.crosstab(col1, col2)

crosstab.__doc__ = DataFrame.crosstab.__doc__
=======

def freqItems(self, cols, support=None):
return self.df.freqItems(cols, support)

freqItems.__doc__ = DataFrame.freqItems.__doc__
>>>>>>> 49549d5a1a867c3ba25f5e4aec351d4102444bc0


def _test():
Expand Down

0 comments on commit bced829

Please sign in to comment.