[ 
https://issues.apache.org/jira/browse/SPARK-43239?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hyukjin Kwon resolved SPARK-43239.
----------------------------------
    Fix Version/s: 3.5.0
       Resolution: Fixed

Issue resolved by pull request 40913
[https://github.com/apache/spark/pull/40913]

> Remove null_counts from info()
> ------------------------------
>
>                 Key: SPARK-43239
>                 URL: https://issues.apache.org/jira/browse/SPARK-43239
>             Project: Spark
>          Issue Type: Bug
>          Components: Pandas API on Spark
>    Affects Versions: 3.4.0, 3.5.0
>            Reporter: Bjørn Jørgensen
>            Assignee: Bjørn Jørgensen
>            Priority: Major
>             Fix For: 3.5.0
>
>
> df.info() is broken now. 
> It prints 
> TypeError                                 Traceback (most recent call last)
> Cell In[12], line 1
> ----> 1 F05.info()
> File /opt/spark/python/pyspark/pandas/frame.py:12167, in DataFrame.info(self, 
> verbose, buf, max_cols, null_counts)
>   12163     count_func = self.count
>   12164     self.count = (  # type: ignore[assignment]
>   12165         lambda: count_func()._to_pandas()  # type: ignore[assignment, 
> misc, union-attr]
>   12166     )
> > 12167     return pd.DataFrame.info(
>   12168         self,  # type: ignore[arg-type]
>   12169         verbose=verbose,
>   12170         buf=buf,
>   12171         max_cols=max_cols,
>   12172         memory_usage=False,
>   12173         null_counts=null_counts,
>   12174     )
>   12175 finally:
>   12176     del self._data
> TypeError: DataFrame.info() got an unexpected keyword argument 'null_counts'



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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

Reply via email to