Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ianozsvald authored Dec 10, 2021
1 parent 7ae4be0 commit 1d34afb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,14 @@

* Pandas better describe - colour the percentiles, not the counts/mean/std, include 5/95% in percentiles. Add dtype description and maybe memory, not how many columns were ignored too (stick on the end maybe?)

* Pandas better cut - give it some ranges and ask for nice labels and it'll form e.g. in scientific form (1M-500k ...) with open/closed labels, maybe special handling of e.g. 0, with formatting for currency and others
* Pandas better cut - give it some ranges and ask for nice labels and it'll form e.g. in scientific form (1M-500k ...) with open/closed labels, maybe special handling of e.g. 0, with formatting for currency and others - in progress in `simpler_pandas`

* Matplotlib label formatter - take int/float labels and convert to eg currency (2dp), human readable (e.g. 1M), optional leading symbol (e.g. £, $) or trailing text (e.g. pp.), with commas (e.g. "2,000") `friendly_label(dp=2, leading_text="", following_text="", with_commas=False, ints_if_possible=False)` and `human_readable(...)`

## NumPy

`dts = np.arange("2021-01-01", "2021-01-30", dtype="datetime64[D]")` will make 29 * 1D datetime64 objectss in an array. `pd.to_datetime(dts)` will make a Pandas `DateTimeIndex` of dtype `datetime64[ns]`. NumPy doesn't store timezone info https://numpy.org/doc/stable/reference/arrays.datetime.html .

## Pandas

### `groupby`
Expand Down

0 comments on commit 1d34afb

Please sign in to comment.