xiuminglib
xiuminglib copied to clipboard
Eliminate `vis.general`
... by renaming it to vis.plot and factoring out those that don't fit into the new name, such as vis.general._save.
Another idea: having a new vis.wrap module that contains separate wrappers for pyplot.scatter, pyplot.line, etc. The current universal wrapper is too ambitious, with lots of corner cases.
ok, going with the 2nd option, but naming it vis.plot instead.
Start migrating functions from vis.general to vis.plot.
Makes more sense to have specialized functions, such as vis.line, vis.scatter, etc. Otherwise, this kind of general wrapper is as hard to use as the original matplotlib API...