dangotbanned commented on issue #46601:
URL: https://github.com/apache/arrow/issues/46601#issuecomment-3508507167

   I think there's a bug with how entries for the API Reference currently being 
collected.
   
   From the most recent few versions, I've noticed the following are missing:
   
   - `pyarrow`
     - `arange`
   - `pyarrow.compute`
     - `bottom_k_unstable`
     - `inverse_permutation`
     - `random`
     - `rank_normal`
     - `rank_quantile`
     - `scatter`
     - `top_k_unstable`
     - `winsorize`
   
   The most recent addition that is present seems to be
   - 
https://arrow.apache.org/docs/20.0/python/generated/pyarrow.compute.pivot_wider.html
   
   I'm assuming this wasn't intentional, since they all do have docstrings:
   
   ```py
   import pyarrow.compute as pc
   
   print(pc.bottom_k_unstable.__doc__)
   ```
   ```
   Select the indices of the bottom-k ordered elements from
   array- or table-like data.
   
   This is a specialization for :func:`select_k_unstable`. Output is not
   guaranteed to be stable.
   
   Parameters
   ----------
   values : Array, ChunkedArray, RecordBatch, ...
   ```
   
   ```py
   print(pc.rank_normal.__doc__)
   ```
   ```
   Compute normal (gaussian) ranks of an array.
   
   This function computes a normal (gaussian) rank of the input array.
   By default, null values are considered greater than any other ...
   ```


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to