使用R从XML文件中提取数据,并将其以行和列的形式显示。

huangapple go评论123阅读模式
英文:

Using R to pull data from an XML file to display it in rows and columns

问题

以下是翻译好的部分:

"I'm pulling data from an XML file and displaying a variable name and its value in two columns, per row. So, each row has two columns: each column has a variable name and its value."

"我正在从一个XML文件中提取数据,并在每行中显示一个变量名称和它的值,所以每行有两列:每列都有一个变量名称和它的值。"

"I'm getting the variable names and the values from an XML file called leaf_default.xml."

"我正在从一个名为leaf_default.xml的XML文件中获取变量名称和值。"

"Some variables in the XML have grand-grandchild nodes. The image I provided shows some of the grandchild nodes, and they are d13c, solver_min, a, theta_j, etc."

"XML中的一些变量具有更深层次的子节点。我提供的图像显示了其中一些子节点,它们是d13c、solver_min、a、theta_j等等。"

"If you look at the XML file, you'll notice that variables such as reftemp, atref, Ha, Hd, Topt, deltaS, a_deltaS_t, b_deltaS_t, c_deltaS_t, and more have grand-grandchild nodes."

"如果您查看XML文件,您会注意到像reftemp、atref、Ha、Hd、Topt、deltaS、a_deltaS_t、b_deltaS_t、c_deltaS_t等变量具有更深层次的子节点。"

"I hope what I explained so far makes sense."

"我希望到目前为止我解释的内容是清晰的。"

"What I'd like to do is create one row and two columns, in a column to display the variables and values of the grand-grandchild nodes."

"我想要做的是创建一行和两列,在一列中显示grand-grandchild节点的变量和值。"

"Here's the xml file:"

"这是XML文件:"

"and here's my existing code (you'll notice that I'm dynamically reading the variables and values, please keep this in mind):"

"这是我的现有代码(您会注意到我动态地读取变量和值,请记住这一点):"

(请注意,我已经省略了代码的详细内容,只提供了相关描述的翻译。)

英文:

I'm pulling data from an XML file and displaying a variable name and its value in two columns, per row. So, each row has two columns: each column has a variable name and its value.
I'm getting the variable names and the values from an XML file called leaf_default.xml.
Some variables in the XML have grand-grandchild nodes. The image I provided shows some of the grandchild nodes, and they are d13c, solver_min, a, theta_j, etc.
example of grandchild nodes being displayed
If you look at the XML file, you'll notice that variables such as reftemp, atref, Ha, Hd, Topt, deltaS, a_deltaS_t, b_deltaS_t, c_deltaS_t, and more have grand-grandchild nodes.

I hope what I explained so far makes sense.
What I'd like to do is create one row and two columns, in a column to display the variables and values of the grand-grandchild nodes. example of what I'd like to achieve

  1. Here's the xml file:
  2. <default>
  3. <fnames>
  4. <leaf>
  5. <sys>'f_sys_enzymek'</sys>
  6. <rh_or_vpd>'f_vpd_from_rh'</rh_or_vpd>
  7. <sat_vp>'f_sat_vp_allen1998'</sat_vp>
  8. <solver>'f_solver_brent'</solver>
  9. <residual_func>'f_residual_func_leaf_Ar'</residual_func>
  10. <assimilation>'f_assimilation_c3'</assimilation>
  11. <photorespiration>'f_photorespiration_f1980'</photorespiration>
  12. <semiana>'f_semiana_quad'</semiana>
  13. <Acg>'f_Acg_farquhar1980'</Acg>
  14. <Ajg>'f_Ajg_generic'</Ajg>
  15. <Apg>'f_Apg_vonc2000'</Apg>
  16. <etrans>'f_etrans_harley1992'</etrans>
  17. <gas_diff>'f_gas_diff_ficks_ci'</gas_diff>
  18. <Alim>'f_Alim_farquhar1980'</Alim>
  19. <vcmax>'f_vcmax_lin'</vcmax>
  20. <jmax>'f_jmax_power'</jmax>
  21. <tcor_jmax>'f_scalar_none'</tcor_jmax>
  22. <tpu>'f_tpu_lin'</tpu>
  23. <k_pepc>'f_k_pepc_constant'</k_pepc>
  24. <rd>'f_rd_lin_vcmax'</rd>
  25. <rl_rd>'f_scalar_none'</rl_rd>
  26. <gstar>'f_gstar_f1980'</gstar>
  27. <ri>'f_r_zero'</ri>
  28. <rs>'f_rs_medlyn2011'</rs>
  29. <rb>'f_rb_leafdim'</rb>
  30. <cica_ratio>'f_cica_ratio_constant'</cica_ratio>
  31. <d13c>'f_d13c_classical'</d13c>
  32. <tcor_asc>
  33. <vcmax>'f_tcor_asc_Arrhenius'</vcmax>
  34. <jmax>'f_tcor_asc_Arrhenius'</jmax>
  35. <tpu>'f_tcor_asc_Arrhenius'</tpu>
  36. <k_pepc>'f_tcor_asc_Arrhenius'</k_pepc>
  37. <rd>'f_tcor_asc_Arrhenius'</rd>
  38. <gstar>'f_tcor_asc_quadratic_bf1985'</gstar>
  39. <tau>'f_tcor_asc_Q10'</tau>
  40. <Kc>'f_tcor_asc_Arrhenius'</Kc>
  41. <Ko>'f_tcor_asc_Arrhenius'</Ko>
  42. </tcor_asc>
  43. <tcor_des>
  44. <vcmax>'f_tcor_des_modArrhenius'</vcmax>
  45. <jmax>'f_tcor_des_modArrhenius'</jmax>
  46. <tpu>'f_tcor_des_modArrhenius'</tpu>
  47. <k_pepc>'f_tcor_des_modArrhenius'</k_pepc>
  48. <rd>'f_scalar_none'</rd>
  49. </tcor_des>
  50. <tcor_dep>
  51. <tpu>'f_tcor_dep_independent'</tpu>
  52. <rd>'f_tcor_dep_independent'</rd>
  53. <tau>'f_tcor_dep_independent'</tau>
  54. </tcor_dep>
  55. <deltaS>
  56. <rd>'f_deltaS'</rd>
  57. <vcmax>'f_deltaS'</vcmax>
  58. <jmax>'f_deltaS'</jmax>
  59. <tpu>'f_deltaS'</tpu>
  60. <k_pepc>'f_deltaS'</k_pepc>
  61. </deltaS>
  62. <q10>
  63. <rd>'f_q10_constant'</rd>
  64. <vcmax>'f_q10_constant'</vcmax>
  65. <jmax>'f_q10_constant'</jmax>
  66. <k_pepc>'f_q10_constant'</k_pepc>
  67. <tau>'f_q10_constant'</tau>
  68. <Kc>'f_q10_constant'</Kc>
  69. <Ko>'f_q10_constant'</Ko>
  70. </q10>
  71. </leaf>
  72. </fnames>
  73. <pars>
  74. <leaf>
  75. <d13c>FALSE</d13c>
  76. <deltaA_prop>0.15</deltaA_prop>
  77. <solver_min>-0.0029834</solver_min>
  78. <solver_max>51.8364435</solver_max>
  79. <a>0.8</a>
  80. <f>0.23</f>
  81. <quantum_yield_to_eff>4</quantum_yield_to_eff>
  82. <ko_kc_ratio>0.21</ko_kc_ratio>
  83. <theta_j>0.9</theta_j>
  84. <theta_col_cj>0.95</theta_col_cj>
  85. <theta_col_cjp>0.98</theta_col_cjp>
  86. <avn_25>10</avn_25>
  87. <bvn_25>30</bvn_25>
  88. <ajv_25>29</ajv_25>
  89. <bjv_25>1.63</bjv_25>
  90. <a_jvt_25>2.59</a_jvt_25>
  91. <b_jvt_25>-0.035</b_jvt_25>
  92. <c_jvt_25>-0.0202</c_jvt_25>
  93. <e_ajv_25>1.01</e_ajv_25>
  94. <e_bjv_25>0.89</e_bjv_25>
  95. <atv_25>0</atv_25>
  96. <btv_25>0.166666666666667</btv_25>
  97. <akv_25>0</akv_25>
  98. <bkv_25>20000</bkv_25>
  99. <flnr>0.09</flnr>
  100. <fnr>7.16</fnr>
  101. <Rsa>60</Rsa>
  102. <Apg_alpha>0</Apg_alpha>
  103. <g0>0.01</g0>
  104. <g1_medlyn>4.16</g1_medlyn>
  105. <g1_leuning>10</g1_leuning>
  106. <d0>1</d0>
  107. <g1_ball>6</g1_ball>
  108. <g_a1_yin>0.85</g_a1_yin>
  109. <g_b1_yin>0.14</g_b1_yin>
  110. <rs>6.66666666666667</rs>
  111. <cica_chi>0.7</cica_chi>
  112. <rb>0.1</rb>
  113. <can_ttc>0.01</can_ttc>
  114. <leaf_width>0.1</leaf_width>
  115. <ri>6.66666666666667</ri>
  116. <co2_diff>1.7e-09</co2_diff>
  117. <hco_co2_ratio>0</hco_co2_ratio>
  118. <hco_co2_diff_ratio>0.56</hco_co2_diff_ratio>
  119. <d13c_a>4.4</d13c_a>
  120. <d13c_b>27</d13c_b>
  121. <d13c_b_prime>30</d13c_b_prime>
  122. <d13c_am>1.8</d13c_am>
  123. <d13c_f>12</d13c_f>
  124. <a_rdv_25>0</a_rdv_25>
  125. <b_rdv_25>0.015</b_rdv_25>
  126. <a_rdn_25>0.5</a_rdn_25>
  127. <b_rdn_25>0.15</b_rdn_25>
  128. <rl_rd_ratio>1</rl_rd_ratio>
  129. <rl_rd_lloyd_a>0.5</rl_rd_lloyd_a>
  130. <rl_rd_lloyd_b>0.05</rl_rd_lloyd_b>
  131. <a_rdv_25_t>0.015</a_rdv_25_t>
  132. <b_rdv_25_t>-5e-04</b_rdv_25_t>
  133. <home_temp>25</home_temp>
  134. <reftemp>
  135. <rd>25</rd>
  136. <vcmax>25</vcmax>
  137. <jmax>25</jmax>
  138. <tpu>25</tpu>
  139. <k_pepc>25</k_pepc>
  140. <Kc>25</Kc>
  141. <Ko>25</Ko>
  142. <gstar>25</gstar>
  143. <tau>25</tau>
  144. </reftemp>
  145. <atref>
  146. <rd>2</rd>
  147. <vcmax>50</vcmax>
  148. <jmax>100</jmax>
  149. <tpu>5</tpu>
  150. <k_pepc>7e+05</k_pepc>
  151. <Kc>40.49</Kc>
  152. <Ko>27.84</Ko>
  153. <gstar>4.325</gstar>
  154. <tau>2.6</tau>
  155. <vomax>0</vomax>
  156. </atref>
  157. <Ha>
  158. <rd>69830</rd>
  159. <vcmax>69830</vcmax>
  160. <jmax>100280</jmax>
  161. <tpu>69830</tpu>
  162. <k_pepc>69830</k_pepc>
  163. <Kc>79430</Kc>
  164. <Ko>36380</Ko>
  165. <gstar>37830</gstar>
  166. <tau>-41572</tau>
  167. <vomax>60110</vomax>
  168. </Ha>
  169. <Hd>
  170. <rd>2e+05</rd>
  171. <vcmax>2e+05</vcmax>
  172. <jmax>2e+05</jmax>
  173. <tpu>2e+05</tpu>
  174. <k_pepc>2e+05</k_pepc>
  175. </Hd>
  176. <Topt>
  177. <rd>27.56</rd>
  178. <vcmax>27.56</vcmax>
  179. <jmax>19.89</jmax>
  180. <tpu>27.56</tpu>
  181. <k_pepc>27.56</k_pepc>
  182. </Topt>
  183. <deltaS>
  184. <rd>0</rd>
  185. <vcmax>0</vcmax>
  186. <jmax>0</jmax>
  187. <tpu>0</tpu>
  188. <k_pepc>0</k_pepc>
  189. </deltaS>
  190. <a_deltaS_t>
  191. <rd>490</rd>
  192. <vcmax>668</vcmax>
  193. <jmax>660</jmax>
  194. <tpu>485</tpu>
  195. </a_deltaS_t>
  196. <b_deltaS_t>
  197. <rd>0</rd>
  198. <vcmax>-1.07</vcmax>
  199. <jmax>-0.75</jmax>
  200. <tpu>0</tpu>
  201. </b_deltaS_t>
  202. <c_deltaS_t>
  203. <rd>0</rd>
  204. <vcmax>0</vcmax>
  205. <jmax>-0.52</jmax>
  206. <tpu>0</tpu>
  207. </c_deltaS_t>
  208. <q10>
  209. <rd>2</rd>
  210. <vcmax>2</vcmax>
  211. <jmax>2</jmax>
  212. <tpu>2</tpu>
  213. <k_pepc>2</k_pepc>
  214. <Kc>2</Kc>
  215. <Ko>2</Ko>
  216. <tau>0.57</tau>
  217. </q10>
  218. <a_q10_t>
  219. <rd>3.22</rd>
  220. </a_q10_t>
  221. <b_q10_t>
  222. <rd>-0.046</rd>
  223. </b_q10_t>
  224. <tupp_cox>
  225. <vcmax>36</vcmax>
  226. <rd>45</rd>
  227. </tupp_cox>
  228. <tlow_cox>
  229. <vcmax>0</vcmax>
  230. <rd>5</rd>
  231. </tlow_cox>
  232. <exp_cox>
  233. <vcmax>0.3</vcmax>
  234. <rd>0.4</rd>
  235. </exp_cox>
  236. <gstar_bf_a>0.012</gstar_bf_a>
  237. <gstar_bf_b>1.68</gstar_bf_b>
  238. <gstar_bf_c>42.7</gstar_bf_c>
  239. <R>8.31446</R>
  240. </leaf>
  241. </pars>
  242. <env>
  243. <leaf>
  244. <ca_conc>400</ca_conc>
  245. <o2_conc>0.21</o2_conc>
  246. <par>1000</par>
  247. <water_l>0</water_l>
  248. <sphag_l>0</sphag_l>
  249. <temp>25</temp>
  250. <vpd>0</vpd>
  251. <rh>0.8</rh>
  252. <atm_press>101325</atm_press>
  253. <wind>1</wind>
  254. </leaf>
  255. </env>
  256. </default>

and here's my exiting code (you'll notice that I'm dynamically reading the variables and values, please keep this in mind):

  1. library(shiny)
  2. library(xml2)
  3. library(shinyWidgets)
  4. library(magrittr)
  5. # Read the XML file and extract the options
  6. xml_file <- "your_path_for_where_you_saved_the_xml_file/leaf_default.xml"
  7. xml_data <- read_xml(xml_file)
  8. # Find the "pars" parent node
  9. pars_leaf_node <- xml_data %>% xml_find_first(".//pars/leaf")
  10. # Find the grandchild node names under "pars"
  11. pars_grandchild_node_names <- xml_children(pars_leaf_node) %>% xml_name()
  12. pars_grandchild_node_values <- xml_children(pars_leaf_node) %>% xml_text()
  13. pars_tc <- xml_data %>% xml_find_first(".//pars/leaf/tlow_cox")
  14. pars_tc_names <- xml_children(pars_tc) %>% xml_name()
  15. pars_tc_values <- xml_children(pars_tc) %>% xml_text()
  16. # Define the UI
  17. ui <- fluidPage(
  18. titlePanel(""),
  19. sidebarLayout(
  20. sidebarPanel(
  21. prettyRadioButtons(
  22. "parts",
  23. "Please Select",
  24. choices = "pars",
  25. inline = TRUE,
  26. status = "danger",
  27. fill = TRUE
  28. ),
  29. width = '10%',
  30. hr(),
  31. uiOutput("ui")
  32. ),
  33. mainPanel(
  34. # Add the main panel content here
  35. )
  36. )
  37. )
  38. # Define the server
  39. server <- function(input, output, session) {
  40. # Update the UI based on the selected parent node
  41. observeEvent(input$parts, {
  42. grandchild_nodes <- pars_grandchild_node_names
  43. output$ui <- renderUI({
  44. fluidRow(
  45. lapply(grandchild_nodes, function(node_name) {
  46. if (node_name %in% pars_grandchild_node_names) {
  47. # Replace the condition with the grandchild nodes you want as text inputs or dropdowns
  48. node_index <- match(node_name, pars_grandchild_node_names)
  49. default_value <- pars_grandchild_node_values[node_index]
  50. if (node_name == "deltaA_prop") {
  51. column(6,
  52. sliderInput(node_name, label = node_name, value = default_value, min = 0.0, max = 1.0)
  53. )
  54. } else if (node_name == "solver_max") {
  55. column (6,
  56. numericInput(node_name, label = node_name, value = default_value, min = 0.0, max = 100.0, step = 0.01)
  57. )
  58. } else {
  59. column(6,
  60. textInput(node_name, label = node_name, value = default_value)
  61. )
  62. }
  63. }
  64. # else {
  65. # # For other grandchild nodes, display as labels
  66. # column(6,
  67. # tags$label(node_name)
  68. # )
  69. # }
  70. })
  71. )
  72. })
  73. })
  74. # Update the input values when the user makes changes
  75. observeEvent(input$ui, {
  76. for (node_name in grandchild_nodes) {
  77. if (node_name %in% pars_grandchild_node_names) {
  78. updateTextInput(session, node_name, value = input[[node_name]])
  79. }
  80. }
  81. })
  82. }
  83. shinyApp(ui = ui, server = server)

答案1

得分: 1

也许这会有所帮助。xml2::as_list()将所有节点转换为列表,然后可以从中生成数据框。

  1. library(xml2)
  2. page <- read_xml("<default>
  3. <fnames>
  4. <leaf>
  5. <sys>'f_sys_enzymek'</sys>
  6. <rh_or_vpd>'f_vpd_from_rh'</rh_or_vpd>
  7. <sat_vp>'f_sat_vp_allen1998'</sat_vp>
  8. .
  9. .
  10. .
  11. </default>")
  12. # 将所有节点作为列表获取
  13. nodelist <- as_list(page)
  14. # 将列表转换为数据框
  15. df <- data.frame(values = unlist(nodelist))
  16. # 将行名称转换为列
  17. df$node <- row.names(df)
  18. row.names(df) <- NULL
  19. df

结果:

  1. values node
  2. 1 'f_sys_enzymek' default.fnames.leaf.sys
  3. 2 'f_vpd_from_rh' default.fnames.leaf.rh_or_vpd
  4. 3 'f_sat_vp_allen1998' default.fnames.leaf.sat_vp
  5. 4 'f_solver_brent' default.fnames.leaf.solver
  6. 5 'f_residual_func_leaf_Ar' default.fnames.leaf.residual_func
  7. 6 'f_assimilation_c3' default.fnames.leaf.assimilation
英文:

Maybe this will help. The xml2::as_list() will convert all of the nodes into a list from there one can generate a data frame.

  1. library(xml2)
  2. page &lt;-read_xml(&quot;&lt;default&gt;
  3. &lt;fnames&gt;
  4. &lt;leaf&gt;
  5. &lt;sys&gt;&#39;f_sys_enzymek&#39;&lt;/sys&gt;
  6. &lt;rh_or_vpd&gt;&#39;f_vpd_from_rh&#39;&lt;/rh_or_vpd&gt;
  7. &lt;sat_vp&gt;&#39;f_sat_vp_allen1998&#39;&lt;/sat_vp&gt;
  8. .
  9. .
  10. .
  11. &lt;default&gt;&quot;)
  12. #get all of the nodes as a list
  13. nodelist &lt;- as_list(page)
  14. #convert the list to data frame
  15. df &lt;- data.frame(values=unlist(nodelist))
  16. #Convert rownames to a column
  17. df$node &lt;- row.names(df)
  18. row.names(df) &lt;- NULL
  19. df
  20. values node
  21. 1 &#39;f_sys_enzymek&#39; default.fnames.leaf.sys
  22. 2 &#39;f_vpd_from_rh&#39; default.fnames.leaf.rh_or_vpd
  23. 3 &#39;f_sat_vp_allen1998&#39; default.fnames.leaf.sat_vp
  24. 4 &#39;f_solver_brent&#39; default.fnames.leaf.solver
  25. 5 &#39;f_residual_func_leaf_Ar&#39; default.fnames.leaf.residual_func
  26. 6 &#39;f_assimilation_c3&#39; default.fnames.leaf.assimilation

huangapple
  • 本文由 发表于 2023年6月8日 05:07:21
  • 转载请务必保留本文链接:https://go.coder-hub.com/76427117.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定