itholic commented on code in PR #44881:
URL: https://github.com/apache/spark/pull/44881#discussion_r1492108932


##########
python/pyspark/pandas/plot/matplotlib.py:
##########
@@ -363,10 +364,23 @@ def _args_adjust(self):
         if is_list_like(self.bottom):
             self.bottom = np.array(self.bottom)
 
+    def _ensure_frame(self, data):
+        return data
+
+    def _calculate_bins(self, data, bins):
+        return bins

Review Comment:
   Pandas recently pushed couple of commits for refactoring the internal 
plotting structure such as https://github.com/pandas-dev/pandas/pull/55850 or 
https://github.com/pandas-dev/pandas/pull/55872, so we also should inherits 
couple of internal methods to follow the latest Pandas behavior.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to