-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ENH] Adds PLS example datasets #44
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov Report
@@ Coverage Diff @@
## master #44 +/- ##
==========================================
- Coverage 98.16% 97.55% -0.61%
==========================================
Files 21 24 +3
Lines 1087 1184 +97
==========================================
+ Hits 1067 1155 +88
- Misses 20 29 +9
Continue to review full report at Codecov.
|
rmarkello
force-pushed
the
examples
branch
2 times, most recently
from
December 18, 2018 21:35
5967325
to
127331f
Compare
Including functions for loading example datasets and structure for adding new examples
Found the URLs required! Will need to rethink how I want to do this since the FC data are all separate files and the behavioral data requires some wrangling...
Now fully loadable (files uploaded to Dropbox -- will have to host scripts for creation elsewhere).
As well as ability to query that information with `query_dataset()`
Can just use urllib for the little that we need
Have to use np.genfromtxt with CSV files that would otherwise be loaded with pandas (if pandas isn't available).
Wasn't testing a few lines of code that really should have been tested...
It doesn't really make sense to have norm=True since we almost never use it!
Still a long ways to go...
Independently zscores (not scipy.stats.zscore) to retain input data structures (e.g., pandas dataframes). Good for documentation demonstration purposes to show cross-correlation matrices. Minor update to compute.efficient_corr to use np.clip, as well.
Still very much a WIP, but...coming along to a degree?
Some minor maintenance that makes working with the documentation a bit easier (e.g., 'make clean html') and some updates to the user guide!
rmarkello
changed the title
[WIP, ENH] Adds PLS example datasets
[ENH] Adds PLS example datasets
Sep 26, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Begins to include example datasets for performing PLS and showcasing the different flavors / types. Will be a work-in-progress for a while, as the goal is to have these for the user documentation (#19).