hi again,
I am trying to drop lowest and highest percentiles in my data. I am using the following commands. I am wondering whether there is a more elegant way (without writing the numbers, 98&8977747) to do this? Becasue everytime ı run teh program I have to go back to data and check it whether these numbers match with the original statistics?
centile rtasset, centile( 0.05 25 50 75 99.5)
replace rtasset=. if rtasset<=98
replace rtasset=. if rtasset> 8977747
I am trying to drop lowest and highest percentiles in my data. I am using the following commands. I am wondering whether there is a more elegant way (without writing the numbers, 98&8977747) to do this? Becasue everytime ı run teh program I have to go back to data and check it whether these numbers match with the original statistics?
centile rtasset, centile( 0.05 25 50 75 99.5)
replace rtasset=. if rtasset<=98
replace rtasset=. if rtasset> 8977747
Comment