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 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 5868 views
  • 0 likes
  • 2 in conversation