Skip to content

Commit bced829

Browse files
committed
fix merge conflicts
1 parent a63ad00 commit bced829

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python/pyspark/sql/dataframe.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1381,17 +1381,15 @@ def cov(self, col1, col2):
13811381

13821382
cov.__doc__ = DataFrame.cov.__doc__
13831383

1384-
<<<<<<< HEAD
13851384
def crosstab(self, col1, col2):
13861385
return self.df.crosstab(col1, col2)
13871386

13881387
crosstab.__doc__ = DataFrame.crosstab.__doc__
1389-
=======
1388+
13901389
def freqItems(self, cols, support=None):
13911390
return self.df.freqItems(cols, support)
13921391

13931392
freqItems.__doc__ = DataFrame.freqItems.__doc__
1394-
>>>>>>> 49549d5a1a867c3ba25f5e4aec351d4102444bc0
13951393

13961394

13971395
def _test():

0 commit comments

Comments
 (0)