python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Percentile rank over multiple partitions averages
Assume I have a table like this
id
cnt
tier
1
100
gold
2
200
silver
3
300
bronze
4
400
bronze
5
500
bronze
6
600
gold
7
700
silver
8
800
silver
9
900
silver
10
1000
silver
...
xiaolong
Votes: 0
Answers: 4
How to find the contour graph and highlighted with 90 percentiles?
I have a raster image whose value ranges from 1 to 10.
I want to find the 90 percentile of mine raster data. And need to find the contour graph by highlighting the area having the 90 percentile. I wan...
user_3264
Votes: 0
Answers: 1
PySpark use percentile_approx to get P95 value is much greater than the max value of same column
I want to get P95 value of a column after groupBy, but when I check the result, I find that the P95 value is greater than the max value. My usage is as follows:
from pyspark.sql.types import StructTyp...
Arik
Votes: 0
Answers: 1
`groupby` - `qcut` but with condition
I have a dataframe as follow:
key1 key2 val
0 a x 8
1 a x 6
2 a x 7
3 a x 4
4 a x 9
5 a x 1
6 a x 2
7 a x 3
8 a ...
PTQuoc
Votes: 0
Answers: 1