1
rbit 패키지를 사용하여 input type = "radio"태그와 TAG span class = "glyphicon glyphicon-ok"에 저장된 텍스트를 읽을 수 있습니까? 예 : 나는rvest를 사용하여 HTML에서 읽기
R 코드 #does이 p_ans에 저장됩니다
install.packages('rvest')
library('rvest')
url <- 'http://upscfever.com/upsc-fever/en/test/en-test-sci1.html'
webpage <- read_html(url)
p_ans <- webpage %>%
html_nodes("input + glyphicon-ok") %>%
html_text()
HTML 코드
<div class="form-group" id="myform">
<label for="usr">Q1: Energy giving foods are </label>
</div>
<div class="radio">
<label><input type="radio" value="1" name="optradio0">Carbohydrates and fats<span class="glyphicon glyphicon-ok"></span></label>
</div>
<div class="radio">
<label><input type="radio" id="opt1" value="-0.33" name="optradio0">Carbohydrates and Proteins<span id="sp1" class="glyphicon glyphicon-remove"></span></label>
</div>
작업 및 NA를주지 문자 벡터에 "탄수화물과 지방을"읽고 싶어 특정 퀴즈에 대한 모든 정답을 찾아내는 아주 영리한 방법 ;-) – hrbrmstr