data-analysis
Here are 7,385 public repositories matching this topic...
Screenshot
N/A
Description
Right now whenever users search for queries they are case sensitive. We should remove this to allow users to put in term with any cases
Design input
[describe any input/collaboration you'd like from designers, and
tag accordingly. For design review, add the
label design:review. If this includes a design proposal,
include the label `design:suggest
In #37556 # type: ignore were added to silence mypy errors to be fixed 'later'. If an ignore is needed due to a error with the type checker, a comment with a reference to the mypy issue on the github mypy issue tracker should be included.
Further investigation or PRs welcome removing these ignores or adding comments with links to mypy issues if applicable. PRs should include 'xref #37715'
-
Updated
Nov 14, 2020 - Clojure
-
Updated
Nov 14, 2020 - C
Is your feature request related to a problem? Please describe.
When working with a big piece of text, I sometimes scroll down and copy some text into another tab. When switching back to the first tab, both the input and the output pane is back on top. So I don't know where I was working just now.
Describe the solution you'd like
After tab switching, scroll position should be remembere
The phonetic GREL function does not validate its second argument, the phonetic encoding, and silently falls back to metaphone.
For instance, "open refine".phonetic("metaphone3") evaluates to "APNRFN" and so does "open refine".phonetic(undefined_value) or "open refine".phonetic(null).
In these last two cases, we should instead throw an error, similar to the one we get with `"open re
-
Updated
Oct 1, 2020 - Python
-
Updated
Nov 14, 2020 - Jupyter Notebook
Collection of follow-ups to #5827. These can/should be broken out into individual PRs. Many are relatively straightforward and would make a good first PR.
General
- Documentation (none was added in original PR).
- Release notes.
- Example notebook.
- Double-check how
sm.tsa.arima.ARIMAworks withfix_params(it should fail except when the fit method isstatespace
-
Updated
Nov 7, 2020 - Jupyter Notebook
-
Updated
Nov 10, 2020 - JavaScript
-
Updated
Oct 15, 2020 - Jupyter Notebook
Improve examples such that they are more incremental (in the import etc) without following strictly PEP8. It will make it nicer to read on the gallery generated online.
-
Updated
Nov 14, 2020 - Java
-
Updated
Nov 14, 2020 - Go
-
Updated
Oct 24, 2020 - Python
-
Updated
Jul 11, 2020 - Python
-
Updated
Oct 30, 2020 - R
-
Updated
Nov 14, 2020 - Go
-
Updated
May 8, 2018 - Jupyter Notebook
I'm using latest pyod version on pypi. How to generate simulated data where x-axis is time? Thank you.
-
Updated
Nov 14, 2020 - JavaScript
-
Updated
Jul 6, 2020 - C++
-
Updated
Feb 6, 2020
-
Updated
Oct 1, 2020 - Python
https://igel.readthedocs.io/en/latest/_sources/readme.rst.txt includes a link to the assets/igel-help.gif, but that path is broken on readthedocs.
readme.rst is included as ../readme.rst in the sphinx build.
The gifs are in asses/igel-help.gif
The sphinx build needs to point to the asset directory, absolutely:
.. image:: /assets/igel-help.gif
I haven't made a patch, because I haven't
-
Updated
Nov 14, 2020 - Python
Improve this page
Add a description, image, and links to the data-analysis topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the data-analysis topic, visit your repo's landing page and select "manage topics."

Most functions in
scipy.linalgfunctions (e.g.svd,qr,eig,eigh,pinv,pinv2...) have a default kwargcheck_finite=Truethat we typically leave to the default value in scikit-learn.As we already validate the input data for most estimators in scikit-learn, this check is redundant and can cause significant overhead, especially at predict / transform time. We should probably a