Difference between revisions of "Test variable C"

From Testiwiki
Jump to: navigation, search
(Formula)
m (Formula: road)
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
== Question ==
 
== Question ==
  
 +
For test purposes, a simple exposure-response function (ERF) that can be called from another variable?
  
 
== Answer ==
 
== Answer ==
  
 +
Use Miedema's ERF for the prevalence of high annoyance as a function of road noise exposure (Lden).
 +
 +
To use this function, include the R code named "ERF_Lden_HA" from this page as follows...
 +
 +
<nowiki><</nowiki>rcode
 +
include="page:Test_variable_C|name:ERF_Lden_HA"
 +
<nowiki>></nowiki>
 +
 +
...and using the input variable "Lden" call the function as follows:
 +
 +
PercentHighlyAnnoyedByRoadNoise <- ERF_Lden_HA(Lden)
  
 
== Rationale ==
 
== Rationale ==
 
  
  
Line 15: Line 26:
 
=== Formula ===
 
=== Formula ===
  
<rcode  
+
<rcode showcode="1"
name="ERF_Lden_HA"  
+
name="ERF_road_Lden_HA"  
 
>
 
>
  
ERF_Lden_HA <- function(Lden) {
+
ERF_road_Lden_HA <- function(Lden) {
PercentHighlyAnnoyedByRoadNoise <- 9.868 * 10^-4  * (Lden - 42)^3 - 1.436 * 10^-2 * (Lden-42)^2 + 0.5118 * (Lden - 42)
+
PercentHighlyAnnoyedByRoadNoise <-
 +
9.868 * 10^-4  * (Lden - 42)^3 - 1.436 * 10^-2 * (Lden-42)^2 + 0.5118 * (Lden - 42)
  
 
return(PercentHighlyAnnoyedByRoadNoise)
 
return(PercentHighlyAnnoyedByRoadNoise)
Line 26: Line 38:
  
  
# debug ERF_Lden_HA(60)
+
# debug ERF_road_Lden_HA(60)
  
 
</rcode>
 
</rcode>

Latest revision as of 12:45, 21 May 2012


Question

For test purposes, a simple exposure-response function (ERF) that can be called from another variable?

Answer

Use Miedema's ERF for the prevalence of high annoyance as a function of road noise exposure (Lden).

To use this function, include the R code named "ERF_Lden_HA" from this page as follows...

<rcode include="page:Test_variable_C|name:ERF_Lden_HA" >

...and using the input variable "Lden" call the function as follows:

PercentHighlyAnnoyedByRoadNoise <- ERF_Lden_HA(Lden)

Rationale

Dependencies

Formula

- Hide code


ERF_road_Lden_HA <- function(Lden) {
	PercentHighlyAnnoyedByRoadNoise <-
	9.868 * 10^-4  * (Lden - 42)^3 - 1.436 * 10^-2 * (Lden-42)^2 + 0.5118 * (Lden - 42)

	return(PercentHighlyAnnoyedByRoadNoise)
}


# debug ERF_road_Lden_HA(60)

See also

Keywords

References


Related files

<mfanonymousfilelist></mfanonymousfilelist>

Test variable C. Opasnet . [1]. Accessed 18 May 2024.