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

dataframe

Here are 361 public repositories matching this topic...

eladmw
eladmw commented Aug 13, 2020

Hello,
Considering your amazing efficiency on pandas, numpy, and more, it would seem to make sense for your module to work with even bigger data, such as Audio (for example .mp3 and .wav). This is something that would help a lot considering the nature audio (ie. where one of the lowest and most common sampling rates is still 44,100 samples/sec). For a use case, I would consider vaex.open('Hu

andygrove
andygrove commented Jul 25, 2020

Update the TPCH example to support query 6:

select
	sum(l_extendedprice * l_discount) as revenue
from
	lineitem
where
	l_shipdate >= date ':1'
	and l_shipdate < date ':1' + interval '1' year
	and l_discount between :2 - 0.01 and :2 + 0.01
	and l_quantity < :3;
UGuntupalli
UGuntupalli commented Aug 3, 2020

Brief Description

Following up on #703, this issue seeks to introduce the ability to test whether in each column in a data frame the change between every two rows is within a user-defined range of values.

I would like to propose..

Example API

import pandas as pd
import numpy as np

# Create a random data frame
df = pd.DataFrame(data=[["2015-01-01 00:00:00", -0.76, 2, 2, 
pdpipe
Devligue
Devligue commented May 4, 2020

Hi, would it be possible to make the user warnings display only when using pipes that actually depend on these imports? Or at least display them in a way that allows filtering out (with logging package perhaps)?

It's just a minor flaw on otherwise great package. Awesome work!

twopirllc
twopirllc commented Sep 9, 2020

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

import pandas_ta as ta
print(ta.version)

Version: 0.2.xxb

Upgrade.

$ pip install -U git+https://github.com/twopirllc/pandas-ta

Yup.

Is your feature request related to a problem? Please describe.
Bollinger Bands Bandwidth

**Describe the solution you'd li

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

You can’t perform that action at this time.