Comments¶
DataFrame.hvplot
(via the Python packagehvplot
) is the most convenient way to use HoloViews.If you want to use HoloViews directly, it is better to create a HoloViews.Dataset object and use it for visualization.
The
groupby
option generates a plot with a dropdown list for interactively showing plots of different groups. You can overlay plots of different groups together on the same plot simplify by calling the.overlay()
Tips on eTrade
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
General Tips
-
Wire transfer is made on the same business day but cost $25; transfering to a Linked External Funding Account takes about 3 business …
Tips on GitHub Actions
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps
-
You can use
sudo
without password in Linux and macOS when running GitHub Actions. -
GitHub Actions supports manual triggers with workflow_dispatch. Workflow parameters are supported in manually triggers …
Sorting Algorithms in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
- slice::sort
- slice::sort_by
- slice::sort_by_key
- slice::sort_unstable
- slice::sort_unstable_by
- slice::sort_unstable_by_key
GlideSort
GlideSort is a novel stable sorting algorithm that combines the best-case behavior of Timsort-style merge sorts for pre-sorted …
Tips on the Rust Crate SQLX
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips on nbconvert
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
Converting too many notebooks at the same (multiprocessing) causes
zmq.error.ZMQError: Address already in use
. The simple way to fix this issue is to limit the number of processes converting …