SAS Health and Life Sciences

Health care analytics, drug development, real-world evidence, and more
BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I presently have a SAS dataset of audiograms with a numeric var named SPL. It contains values which represent sound pressure levels measured in decibels (dBSPL). I need to convert the values of SPL to sound pressure measured in Pa (Pascal) or uP (micropascals) and store the converted values for future analysis. Any idea how to help this novice do this in SAS?

Thanks
3 REPLIES 3
Doc_Duke
Rhodochrosite | Level 12
I found this bye google searching the internet for

convert dbspl to pascal units

"'Pa' is the abbreviation for Pascal, which is a unit of pressure that is equivalent to 93.9794 dB SPL (Sound Pressure Level)."

so, the SAS statement is
Pa=93.9794* ;

If you need to know how to save a pemanent SAS dataset, you probably need a short cours e on introductory SAS. Cody's book might be useful there.
deleted_user
Not applicable
Unfortunately its not that simple. This is decibled sound pressure with a reference pressure of 0.00002Pa, it is not a simple multiplicative conversion factor.

dbSPL = 20 * LOG10(Pa/0.00002)

So the conversion is going to be

X = Pressure in Pa
Y = Presseure in dbSPL

Y=20*LOG10(X/0.00002)

Y/20 = LOG10(X/0.00002)

10^(Y/20)=X/0.00002

X = 0.00002 * 10^(Y/20)

Or in SAS Functions

X = 0.00002 * (10**(Y/20))

Ike Eisenhauer

Message was edited by: WDEisenhauer
deleted_user
Not applicable
Thanks! I actually had the conversion coded as:
X = 20*(10**(Y/20))/1000000;

Same result, but your's looks cleaner.

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

Health and Life Sciences Learning

 

Need courses to help you with SAS Life Sciences Analytics Framework, SAS Health Cohort Builder, or other topics? Check out the Health and Life Sciences learning path for all of the offerings.

LEARN MORE

Discussion stats
  • 3 replies
  • 6313 views
  • 0 likes
  • 2 in conversation