Nathan

Results 23 issues of Nathan

Without too much work, it appears that we can create an animated image that captures changes to a dataset over time or some series related domain. We could accomplish this...

type: feature
priority: low
level: expert
type: contrib

This is an initial issue to track and research incorporating interactive Jupyter Notebook widgets into yellowbrick. Likely any outputs from this would be well placed in the `contrib` module A...

type: feature
level: expert
type: contrib

Create an Identify estimator to allow yellowbrick to use datasets that already contain predicted probabilities ``` from sklearn.base import BaseEstimator, ClassifierMixin class Identity(BaseEstimator, ClassifierMixin): def fit(self, X, y=None): return self...

type: feature
type: contrib

The concept is to create a visualizer utility / transformer method to create multiple plots that each have a focus on one element / class in a set of values....

Add labels with metrics such as recall, precision, tpr and etc to the DecisionBoundaryVisualizer As seen in as the visualizations in this blog post: https://medium.com/towards-data-science/what-metrics-should-we-use-on-imbalanced-data-set-precision-recall-roc-e2e79252aeba Example from the blog post:...

Great project! I love it! Wondering if i can import a csv that contains geographical data. For example, something like this c = CopyMapping( MyModel, "./data.csv", dict(point=['x', 'y'], number='NUMBER') )...

enhancement
help wanted

Loving this project. I feel like this project would benefit from a short quick start tutorial that demonstrate common methods such as: **Create item** ``` mutation = Operation(schema.Mutation) # note...

enhancement
good first issue

The example in the readme does not work for me on python 3.4. Here's an example that does work for me -- just sharing. ``` import codecs reader = codecs.getreader("utf-8")...

Received the follow error when building, this fixes it -- Configuring incomplete, errors occurred! See also "/root/opencv/build/CMakeFiles/CMakeOutput.log". See also "/root/opencv/build/CMakeFiles/CMakeError.log". CMake Error: The following variables are used in this project,...

Love the stuff in here. What is it licensed under?