The Wayback Machine - https://web.archive.org/web/20220509033144/https://github.com/topics/dataframe
Skip to content
#

dataframe

Here are 589 public repositories matching this topic...

Ben-Epstein
Ben-Epstein commented Mar 12, 2022

Thank you for reaching out and helping us improve Vaex!

Before you submit a new Issue, please read through the documentation. Also, make sure you search through the Open and Closed Issues - your problem may already be discussed or addressed.

Description
Please provide a clear and concise description of the problem. This should contain all the steps nee

VibhuJawa
VibhuJawa commented May 5, 2022

Describe the bug
series.unique() returns a cuDF.Series while it returns a numpy.ndarray for pandas.

Steps/Code to reproduce bug

In [1]: import cudf
In [2]: import pandas as pd

In [3]: type(pd.Series([1,1]).unique())
Out[3]: numpy.ndarray

In [4]: type(cudf.Series([1,1]).unique())
Out[4]: cudf.core.series.Series

Expected behavior
I would exp

bug good first issue cuDF (Python)
danfojs
kylemcdonald
kylemcdonald commented Mar 2, 2022

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] }));
  
enhancement good first issue
abhijitgawai
abhijitgawai commented May 4, 2022

Which version are you running? The lastest version is on Github. Pip is for major releases.
lattest

Is your feature request related to a problem? Please describe.
No

Describe the solution you'd like
I want to use SSL channel Indicator (Semaphore Signal Level channel)

Describe alternatives you've considered
I dont have Any Idea, are there alternatives of SSL channel ind

enhancement help wanted good first issue
tustvold
tustvold commented May 5, 2022

Is your feature request related to a problem or challenge? Please describe what you are trying to do.

ScalarValue::List and ScalarValue::Struct contain a Box<Vec<_>> this adds a redundant level of boxing. Clippy in fact complains about this, but this has been suppressed with #[allow(clippy::box_collection)]

Describe the solution you'd like

Remove the additional Box

enhancement good first issue
DataFrame
anks7190
anks7190 commented Jan 27, 2021

Hi ,

I am using some basic functions from pyjanitor such as - clean_names() , collapse_levels() in one of my code which I want to productionise.
And there are limitations on the size of the production code base.
Currently ,if I just look at the requirements.txt for just "pyjanitor" , its huge .
I don't think I require all the dependencies in my code.
How can I remove the unnecessary ones ?

help wanted good first issue available for hacking infrastructure
pdpipe
yarkhinephyo
yarkhinephyo commented Nov 28, 2021

For pipeline stages provided by the pdpipe.basic_stages, supplying conditions to the prec and post keyword arguments may not return the correct error messages.

Example Code

import pandas as pd; import pdpipe as pdp;
df = pd.DataFrame([[1,4],[4,5],[1,11]], [1,2,3], ['a','b'])
pline = pdp.PdPipeline([
  pdp.FreqDrop(2, 'a', prec=pdp.cond.HasAllColumns(['x']))
])
pline.apply(

Improve this page

Add a description, image, and links to the dataframe topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the dataframe topic, visit your repo's landing page and select "manage topics."

Learn more