data-analysis
Here are 10,021 public repositories matching this topic...
-
Updated
Sep 29, 2021 - Clojure
Summary
All Streamlit widgets and elements fade when the app is rerunning. But this is not happening for st.expander.
Steps to reproduce
Code snippet:
import streamlit as st
import time
time.sleep(10) # Makes it easier to see the bug
st.write("This fades correctly")
st.button("This too")
with st.expander("This doesn't fade"):
st.write("but this fades")
-
Updated
Apr 16, 2021 - JavaScript
-
Updated
Sep 28, 2021 - 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
There is no easy way to navigate up the parse tree provided by jsoup selector syntax. We currently can navigate down very easily with Jsoup's selector syntax value.parseHtml().select("div > p") and also value.parseHtml().select("div:has(@) ~ div") but
this does not directly allow DOM traversal itself. However, Jsoup conveniently provides DOM traversal for finding a https://jsoup.org/apidoc
-
Updated
Sep 28, 2021 - Jupyter Notebook
-
Updated
Sep 12, 2021 - Python
-
Updated
Sep 26, 2021 - 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
Describe the issue linked to the documentation
In the section https://imbalanced-learn.org/stable/under_sampling.html#prototype-selection the selected subset S' should be a (strict) subset, not and element of S.
Suggest a potential alternative/fix
Change \in to \subset in doc/under_sampling.rst.
-
Updated
Sep 29, 2021 - Go
-
Updated
Sep 29, 2021 - Java
-
Updated
Sep 29, 2021 - Go
-
Updated
Oct 15, 2020 - Jupyter Notebook
-
Updated
Sep 1, 2021 - Python
The official instructions say to use joblib for pickling PyOD models.
This fails for AutoEncoders, or any other TensorFlow-backed model as far as I can tell. The error is:
>>> dump(model, 'model.joblib')
...
TypeError: can't pickle _thread.RLock objects
Note that it's not sufficient to save the underlying Keras S
-
Updated
Aug 6, 2021 - R
-
Updated
Jul 11, 2020 - Python
-
Updated
May 8, 2018 - Jupyter Notebook
Java and Python provide logging frameworks for recording errors and stack traces. Logging can be configured to format those messages, such as by removing newlines from stack traces, adding timestamps, and putting a log level (INFO, WARN, ERROR) on the message. In the future, it may also include json structured logging. Using the logging framew
-
Updated
Sep 29, 2021 - Python
-
Updated
Feb 6, 2020
-
Updated
Sep 21, 2021 - JavaScript
-
Updated
Sep 27, 2021 - Python
-
Updated
Sep 29, 2021 - Java
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."

Describe the issue linked to the documentation
Use
:doi:and:arxiv:directives for references in the documentation as is done in scipy in scipy/scipy#12858.Suggest a potential alternative/fix
No response