Skip to content

Commit 0855305

Browse files
authored
Merge branch 'DistrictDataLabs:develop' into develop
2 parents 70b5364 + f7a8e95 commit 0855305

File tree

934 files changed

+65602
-12786
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

934 files changed

+65602
-12786
lines changed

.appveyor.yml

-71
This file was deleted.

.gitattributes

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Set the default behavior, in case contributors don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Explicitly declare text files
5+
*.py text
6+
*.rst text
7+
*.md text
8+
*.json text
9+
*.ipynb text
10+
*.cfg text
11+
12+
# Baseline images are binary and should not be modified
13+
*.png binary
14+
*.jpg binary
15+
*.pdf binary
16+
17+
# Compressed files are binary and should not be modified
18+
*.gz binary
19+
*.npz binary
20+
*.zip binary

.github/FUNDING.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
custom: https://numfocus.org/donate

.github/ISSUE_TEMPLATE/bug_report.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
5+
---
6+
7+
**Describe the bug**
8+
A clear and concise description of what the bug is.
9+
10+
**To Reproduce**
11+
12+
```python
13+
# Steps to reproduce the behavior (code snippet):
14+
# Should include imports, dataset loading, and execution
15+
# Add the traceback below
16+
```
17+
18+
**Dataset**
19+
Did you use a specific dataset to produce the bug? Where can we access it?
20+
21+
**Expected behavior**
22+
A clear and concise description of what you expected to happen.
23+
24+
**Traceback**
25+
26+
```
27+
If applicable, add the traceback from the exception.
28+
```
29+
30+
**Desktop (please complete the following information):**
31+
- OS: [e.g. macOS]
32+
- Python Version [e.g. 2.7, 3.6, miniconda]
33+
- Yellowbrick Version [e.g. 0.7]
34+
35+
**Additional context**
36+
Add any other context about the problem here.
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
**Describe the solution you'd like**
8+
A clear and concise description of what you want to happen.
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Examples**
14+
Attach an image with an example of the proposed visualization (e.g. from wikipedia or a wireframe example you've drawn). If there are any references we should include in the documentation, please also include them.
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Generic Issue
3+
about: Alert us to an issue or task for this project
4+
5+
---
6+
7+
**Describe the issue**
8+
A clear and concise description of what the issue is.
9+
10+
<!-- If you have a question, note that you can email us via our listserve:
11+
https://groups.google.com/forum/#!forum/yellowbrick -->
12+
13+
<!-- This line alerts the Yellowbrick maintainers, feel free to use this
14+
@ address to alert us directly in follow up comments -->
15+
@DistrictDataLabs/team-oz-maintainers

.github/PULL_REQUEST_TEMPLATE.md

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<!--
2+
# Welcome Contributor!
3+
4+
Thank you for contributing to Yellowbrick, please follow the instructions below to get
5+
your PR started off on the right foot.
6+
7+
## First Steps
8+
9+
1. Are you merging from a feature branch into develop?
10+
11+
_If not, please create a feature branch and change your PR to merge from that branch
12+
into the Yellowbrick `develop` branch._
13+
14+
2. Does your PR have a title?
15+
16+
_Please ensure your PR has a short, informative title, e.g. "Enhances ParallelCoordinates with new andrews_curve parameter" or "Corrects bug in WhiskerPlot that causes index error"_
17+
18+
3. Summarize your PR (HINT: See CHECKLIST/TEMPLATE below!)
19+
-->
20+
21+
This PR fixes #issue_number _(If you are fixing a bug)_ which reported a bug that caused a problem to occur when users...
22+
23+
_(or if you are introducing a new feature)_ which requested a feature to allow the user to...
24+
25+
I have made the following changes:
26+
27+
1.
28+
2.
29+
3.
30+
31+
### Sample Code and Plot
32+
33+
_If you are adding or modifying a visualizer, PLEASE include a sample plot here along with the code you used to generate it._
34+
35+
### TODOs and questions
36+
37+
<!--
38+
If this is a work-in-progress (WIP), list the changes you still need to make and/or questions or the Yellowbrick team. You can also mention extensions to your work that might be added as an issue to work on after the PR.
39+
-->
40+
41+
Still to do:
42+
43+
- [ ]
44+
- [ ]
45+
- [ ]
46+
47+
Questions for the @DistrictDataLabs/team-oz-maintainers:
48+
49+
- [ ]
50+
- [ ]
51+
52+
### CHECKLIST
53+
54+
<!--
55+
Here's a handy checklist to go through before submitting a PR, note that you can check a checkbox in Markdown by changing `- [ ]` to `- [x]` or you can create the PR and check the box manually.
56+
-->
57+
58+
- [ ] _Is the commit message formatted correctly?_
59+
- [ ] _Have you noted the new functionality/bugfix in the release notes of the next release?_
60+
61+
<!-- If you've changed any code -->
62+
63+
- [ ] _Included a sample plot to visually illustrate your changes?_
64+
- [ ] _Do all of your functions and methods have docstrings?_
65+
- [ ] _Have you added/updated unit tests where appropriate?_
66+
- [ ] _Have you updated the baseline images if necessary?_
67+
- [ ] _Have you run the unit tests using `pytest`?_
68+
- [ ] _Is your code style correct (are you using PEP8, pyflakes)?_
69+
- [ ] _Have you documented your new feature/functionality in the docs?_
70+
71+
<!-- If you've added to the docs -->
72+
73+
- [ ] _Have you built the docs using `make html` (must be run from `docs/`)?_

.github/RELEASE_TEMPLATE.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
**Deployed:** DayOfWeek, Month D, YYYY
2+
**Current Contributors:** [insert GitHub @username comma list]
3+
4+
[Release description (1-2 paras)]
5+
6+
**Major Changes:**
7+
8+
- [Change 1]
9+
- [Change 2]
10+
11+
Minor Changes:
12+
13+
- [Change 1]
14+
- [Change 2]

.github/issue_template.md

-13
This file was deleted.

.github/pull_request_template.md

-11
This file was deleted.

0 commit comments

Comments
 (0)