python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to connect to Teradata database using Dask?
The pandas equivalent code for connecting to Teradata, I have used is:
database = config.get('Teradata connection', 'database')
host = config.get('Teradata connection', 'host')
user = config.get('Tera...
krx
Votes: 0
Answers: 1
distribute max X columns using dask
I have very large hdf files each with a dataset X of for example shape (24000000,8000) of dtype Int16.
I need to run a function on a subset of each of these columns, say X[50000:-50000,:].
This is way...
Benjamin hansen
Votes: 0
Answers: 0
How to split dask dataframe into partitions based on unique values in a column?
I have a dask dataframe with a date column doc_date that is in the range 12-1-2021 to 1-2-2022. I want to repartition and split this dask dataframe into the 26 partitions such that each partition has ...

Riley Hun
Votes: 0
Answers: 1