Test variable B: Difference between revisions
Jump to navigation
Jump to search
(→Formula: some further steps) |
|||
Line 16: | Line 16: | ||
=== Formula === | === Formula === | ||
# The code below | # The code below is used for practising; under development. | ||
Revision as of 14:17, 21 May 2012
Moderator:Erkki Kuusisto (see all) |
This page is a stub. You may improve it into a full page. |
Upload data
|
Question
A simple test variable that fetches the data defined in "Test variable A", as well as a function defined in Test variable C?
Answer
Rationale
Dependencies
Formula
- The code below is used for practising; under development.
library(OpasnetBaseUtils) library(xtable) cat("Initiation successful. \n") out <- op_baseGetData("opasnet_base", "Op_en5682") # Fetches data from Test variable A. out <- tidy(out , direction = "wide") # print(out) print(xtable(out), type = 'html', html.table.attributes = "class='sortable'") #mode(out) #length(out) #unclass(out) road_lower_bound <- out[out$Source == "Road" & out$Indicator == "Lden", "Lower bound (dB)"] road_upper_bound <- out[out$Source == "Road" & out$Indicator == "Lden", "Upper bound (dB)"] road_exposed <- out[out$Source == "Road" & out$Indicator == "Lden", "Result"] print(road_exposed) print(road_lower_bound) print(road_upper_bound) # d[d$Row %in% 2:4, ] # colnames(out)[colnames(out) == "obs.1"] Lden <- 60 HA <- ERF_road_Lden_HA(Lden) Lden HA |
See also
Keywords
References
Related files
<mfanonymousfilelist></mfanonymousfilelist>