How calculate percentile from a table with distance

Sorry about the noob question, but I'm learning and I didn't find an awser.

I just need to calculate de percentiles (5% to 95%) of my table, what I need to do?

Example of my data
Capturar

Thank you

I assume you want to calculate those percentiles on DISTANCE?
but please explain to me this character formatting of DISTANCE.
13.015,72 seems ambiguous to me.
is this supposed to represent 13.01572 or 13015.72 ?

Hi, yes I want to calculate the percentiles on DISTANCE

The correct is 13015.72 I work in a french computer

I imported my DISTANCE as "double" not as "numeric" this is correct
image

that seems better.
From the first screenshot the dataframe name seemed to be Percentile so you can do like this:

stats::quantile(Percentile$DISTANCE,
                 probs=c(.05,.95))
1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.