-
Updated
Apr 14, 2022 - Jupyter Notebook
pandas
Here are 16,397 public repositories matching this topic...
-
Updated
Apr 3, 2022 - Python
Describe the bug
Streaming Datasets can't be pickled, so any interaction between them and multiprocessing results in a crash.
Steps to reproduce the bug
import transformers
from transformers import Trainer, AutoModelForCausalLM, TrainingArguments
import datasets
ds = datasets.load_dataset('oscar', "unshuffled_deduplicated_en", split='train', streaming=True).with_format("- Base README.md
- Quizzes
- Introduction base README
- Defining Data Science README
- Defining Data Science assignment
- Ethics README
- Ethics assignment
- Defining Data README
- Defining Data assignment
- Stats and Probability README
- Stats and Probability assignment
- Working with Data base README
- Rel
-
Updated
Mar 28, 2022 - Python
This is a suggestion to simplify reporting the dask version in the issue template by providing a suggested code snippet to run (in the Environment section of the issue template):
import dask; print("- Dask version:", dask.__version__)
import sys; print("- Python version:", sys.version)-
Updated
May 24, 2022 - Python
-
Updated
May 23, 2022 - Python
-
Updated
Dec 23, 2020 - Python
-
Updated
Apr 1, 2022 - Python
-
Updated
May 10, 2022 - Jupyter Notebook
-
Updated
May 24, 2022 - Python
-
Updated
May 9, 2022 - Python
-
Updated
Apr 16, 2022 - Jupyter Notebook
-
Updated
Feb 6, 2020
The use of an mr parameter in inplace_bitmask_and, which calls inplace_bitmask_binop, is a little misleading. The allocations there are always temporary and are not part of the return value. It is only used for a few temporary arrays/scalars: https://github.com/rapidsai/cudf/blob/1f8a03e69704562dfac38de40b7172650280c6ea/cpp/include/cudf/detail/null_mask.cuh#L169-L171
It should be possible
-
Updated
May 8, 2018 - Jupyter Notebook
-
Updated
May 21, 2022 - Python
Reading currencies, alphavantage returns a greeting note ("welcome") and this note raises an error in alphavantage.py line 363.
elif "Note" in json_response and self.treat_info_as_error:
raise ValueError(json_response["Note"])
For this reason, alphavantage does not work in home assistant.
-
Updated
May 23, 2022 - Python
-
Updated
May 8, 2022 - TypeScript
to_dict() equivalent
I would like to convert a DataFrame to a JSON object the same way that Pandas does with to_dict().
toJSON() treats rows as elements in an array, and ignores the index labels. But to_dict() uses the index as keys.
Here is an example of what I have in mind:
function to_dict(df) {
const rows = df.toJSON();
const entries = df.index.map((e, i) => ({ [e]: rows[i] }));
-
Updated
May 24, 2022 - C++
-
Updated
Feb 27, 2022 - Python
-
Updated
Apr 6, 2022 - Python
Wondering if this already exists? If not happy to create if valuable.
I'm looking for a mapping from the column names outputted, to the actual technical indicator it represents.
examples:
momentum_ao == "Momentum, Awesome Oscilator"
momentum_kama == "Momentum, Kaufman’s Adaptive Moving Average (KAMA)"
Can help quickly grasp what the features represent without having to refer back to do
Improve this page
Add a description, image, and links to the pandas topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the pandas topic, visit your repo's landing page and select "manage topics."
Pandas version checks
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pandas.
I have confirmed this bug exists on the main branch of pandas.
Reproducible Example