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)
Condition Based Custom Flag
I've a dataset
id
ref
name
conditionCol
1
123
a
no_error
1
456
b
error
1
789
c
no_error
2
231
d
no_error
2
312
e
no_error
2
546
f
no_error
3
645
g
error
3
879
h
error
4
789
i
...
fast_crawler
Votes: 0
Answers: 1
Counting all words in a column of a dataset pandas
I am carrying out EDA on a dataset and want to count the total number of words in a column, before and after deleting duplicates.
Here is my code:
print(train_dataset['text'].apply(lambda x: len(x.spl...
Adekunle Agboke
Votes: 0
Answers: 1
pandas profiling with dask-dataframe. IndexError
I get an IndexError (IndexError: only integers, slices (:), ellipsis, nmpy.newaxis and integer or bolean arays are valid indices) while pandas profiling with dask.
data: 290170 x 55
import dask.datafr...
vijay v pillai
Votes: 0
Answers: 1
Working on Data exploratory and I am now in the Cleaning data level
I am wondering when I have a date in my dataset and there are NULL values in date columns what is the best way to impute the date Null values in a datetime dtype?!
As for the floats values I have alre...
user18257965
Votes: 0
Answers: 1