python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Worker process still alive after 0 seconds, killing
I submit two Dask containers with my scheduler (PBS) like that :
#!/usr/bin/env bash
#PBS -N MyApp
#PBS -q my_queue
#PBS -l select=1:ncpus=1:mem=2GB
#PBS -l walltime=00:30:00
#PBS -m n
/.../bin/pyth...
Klun
Votes: 0
Answers: 1
question for dask output when using dask.array.map_overlap
I would like to use dask.array.map_overlap to deal with the scipy interpolation function. However, I keep meeting errors that I cannot understand and hoping someone can answer this to me.
Here is the ...
Franke Hsu
Votes: 0
Answers: 1
Get age from DOB - Dask
How would I include a new column called "Age_cust" when I have a a "DOB" column?
from datetime import date
today = date.today()
ddf = ddf.assign(Age_cust=cust.map_partitions(lambd...
waithira
Votes: 0
Answers: 2
row_number query in Dask with SQLAlchemy 1.3
I am trying to get SQLAlchemy to create the following standard SQL query:
SELECT ROW_NUMBER() OVER (ORDER BY(select 0)) AS row_num, User_Id FROM my_table
Using the following code:
from sqlalchemy imp...
BigBlueMonster
Votes: 0
Answers: 0