查詢當前路徑
getwd()
## [1] "C:/Users/david/Desktop"
設定路徑
setwd(<directory>)
建立目錄夾
if(!file.exists("data")){
file.create("data")
}
使用R下載檔案
fileurl = 'http://data.tainan.gov.tw/dataset/e70e2580-b45b-457f-8715-d1d0846434ac/resource/4a9a150a-e79a-4ae0-bcec-abd3e619f6a3/download/landmark2.csv'
download.file(fileurl, destfile = 'landmark2.csv', method = "curl")
讀取本地端檔案
read.data = read.table(header= TRUE, file='landmark2.csv',encoding = 'UTF-8')
read.data2 = read.csv(header= TRUE, file='landmark2.csv',encoding = 'UTF-8')
讀取及寫入xlsx 檔案
stock_data = read.xlsx(header = TRUE, file= '23
30.xlsx', sheetIndex = 1)
write.xlsx(stock_data, file= 'test.xlsx')
讀取XML 範例
library(XML)
fileurl = "http://data.ntpc.gov.tw/NTPC/od/data/api/IMC14?$format=xml&$top=3"
doc = xmlTreeParse(fileurl)
doc
讀取JSON 檔案
library(jsonlite)
##
## Attaching package: 'jsonlite'
##
## The following object is masked from 'package:utils':
##
## View
jsondata = fromJSON("https://api.github.com/users/ywchiu/repos")
jsondata
## id name
## 1 11306214 bitstarter
## 2 19656256 DSPCourse
## 3 14078336 icultureclock
## 4 14078196 iculturecolorclock
## 5 20986865 Java-ETL-Course
## 6 7221185 ka-term-replace
## 7 5282312 ka-translate
## 8 9768035 Machine-Learning-For-Hackers---Chapter-3-Classfication
## 9 9753046 mldm_study
## 10 22703848 rbasic
## 11 22049853 rhadoopcourse
## 12 14330801 SocialNetworkWithR
## full_name
## 1 ywchiu/bitstarter
## 2 ywchiu/DSPCourse
## 3 ywchiu/icultureclock
## 4 ywchiu/iculturecolorclock
## 5 ywchiu/Java-ETL-Course
## 6 ywchiu/ka-term-replace
## 7 ywchiu/ka-translate
## 8 ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication
## 9 ywchiu/mldm_study
## 10 ywchiu/rbasic
## 11 ywchiu/rhadoopcourse
## 12 ywchiu/SocialNetworkWithR
## owner.login owner.id
## 1 ywchiu 2088096
## 2 ywchiu 2088096
## 3 ywchiu 2088096
## 4 ywchiu 2088096
## 5 ywchiu 2088096
## 6 ywchiu 2088096
## 7 ywchiu 2088096
## 8 ywchiu 2088096
## 9 ywchiu 2088096
## 10 ywchiu 2088096
## 11 ywchiu 2088096
## 12 ywchiu 2088096
## owner.avatar_url
## 1 https://avatars.githubusercontent.com/u/2088096?v=2
## 2 https://avatars.githubusercontent.com/u/2088096?v=2
## 3 https://avatars.githubusercontent.com/u/2088096?v=2
## 4 https://avatars.githubusercontent.com/u/2088096?v=2
## 5 https://avatars.githubusercontent.com/u/2088096?v=2
## 6 https://avatars.githubusercontent.com/u/2088096?v=2
## 7 https://avatars.githubusercontent.com/u/2088096?v=2
## 8 https://avatars.githubusercontent.com/u/2088096?v=2
## 9 https://avatars.githubusercontent.com/u/2088096?v=2
## 10 https://avatars.githubusercontent.com/u/2088096?v=2
## 11 https://avatars.githubusercontent.com/u/2088096?v=2
## 12 https://avatars.githubusercontent.com/u/2088096?v=2
## owner.gravatar_id owner.url
## 1 20e9b842d1c65b4ae8c340efcc29655e https://api.github.com/users/ywchiu
## 2 20e9b842d1c65b4ae8c340efcc29655e https://api.github.com/users/ywchiu
## 3 20e9b842d1c65b4ae8c340efcc29655e https://api.github.com/users/ywchiu
## 4 20e9b842d1c65b4ae8c340efcc29655e https://api.github.com/users/ywchiu
## 5 20e9b842d1c65b4ae8c340efcc29655e https://api.github.com/users/ywchiu
## 6 20e9b842d1c65b4ae8c340efcc29655e https://api.github.com/users/ywchiu
## 7 20e9b842d1c65b4ae8c340efcc29655e https://api.github.com/users/ywchiu
## 8 20e9b842d1c65b4ae8c340efcc29655e https://api.github.com/users/ywchiu
## 9 20e9b842d1c65b4ae8c340efcc29655e https://api.github.com/users/ywchiu
## 10 20e9b842d1c65b4ae8c340efcc29655e https://api.github.com/users/ywchiu
## 11 20e9b842d1c65b4ae8c340efcc29655e https://api.github.com/users/ywchiu
## 12 20e9b842d1c65b4ae8c340efcc29655e https://api.github.com/users/ywchiu
## owner.html_url owner.followers_url
## 1 https://github.com/ywchiu https://api.github.com/users/ywchiu/followers
## 2 https://github.com/ywchiu https://api.github.com/users/ywchiu/followers
## 3 https://github.com/ywchiu https://api.github.com/users/ywchiu/followers
## 4 https://github.com/ywchiu https://api.github.com/users/ywchiu/followers
## 5 https://github.com/ywchiu https://api.github.com/users/ywchiu/followers
## 6 https://github.com/ywchiu https://api.github.com/users/ywchiu/followers
## 7 https://github.com/ywchiu https://api.github.com/users/ywchiu/followers
## 8 https://github.com/ywchiu https://api.github.com/users/ywchiu/followers
## 9 https://github.com/ywchiu https://api.github.com/users/ywchiu/followers
## 10 https://github.com/ywchiu https://api.github.com/users/ywchiu/followers
## 11 https://github.com/ywchiu https://api.github.com/users/ywchiu/followers
## 12 https://github.com/ywchiu https://api.github.com/users/ywchiu/followers
## owner.following_url
## 1 https://api.github.com/users/ywchiu/following{/other_user}
## 2 https://api.github.com/users/ywchiu/following{/other_user}
## 3 https://api.github.com/users/ywchiu/following{/other_user}
## 4 https://api.github.com/users/ywchiu/following{/other_user}
## 5 https://api.github.com/users/ywchiu/following{/other_user}
## 6 https://api.github.com/users/ywchiu/following{/other_user}
## 7 https://api.github.com/users/ywchiu/following{/other_user}
## 8 https://api.github.com/users/ywchiu/following{/other_user}
## 9 https://api.github.com/users/ywchiu/following{/other_user}
## 10 https://api.github.com/users/ywchiu/following{/other_user}
## 11 https://api.github.com/users/ywchiu/following{/other_user}
## 12 https://api.github.com/users/ywchiu/following{/other_user}
## owner.gists_url
## 1 https://api.github.com/users/ywchiu/gists{/gist_id}
## 2 https://api.github.com/users/ywchiu/gists{/gist_id}
## 3 https://api.github.com/users/ywchiu/gists{/gist_id}
## 4 https://api.github.com/users/ywchiu/gists{/gist_id}
## 5 https://api.github.com/users/ywchiu/gists{/gist_id}
## 6 https://api.github.com/users/ywchiu/gists{/gist_id}
## 7 https://api.github.com/users/ywchiu/gists{/gist_id}
## 8 https://api.github.com/users/ywchiu/gists{/gist_id}
## 9 https://api.github.com/users/ywchiu/gists{/gist_id}
## 10 https://api.github.com/users/ywchiu/gists{/gist_id}
## 11 https://api.github.com/users/ywchiu/gists{/gist_id}
## 12 https://api.github.com/users/ywchiu/gists{/gist_id}
## owner.starred_url
## 1 https://api.github.com/users/ywchiu/starred{/owner}{/repo}
## 2 https://api.github.com/users/ywchiu/starred{/owner}{/repo}
## 3 https://api.github.com/users/ywchiu/starred{/owner}{/repo}
## 4 https://api.github.com/users/ywchiu/starred{/owner}{/repo}
## 5 https://api.github.com/users/ywchiu/starred{/owner}{/repo}
## 6 https://api.github.com/users/ywchiu/starred{/owner}{/repo}
## 7 https://api.github.com/users/ywchiu/starred{/owner}{/repo}
## 8 https://api.github.com/users/ywchiu/starred{/owner}{/repo}
## 9 https://api.github.com/users/ywchiu/starred{/owner}{/repo}
## 10 https://api.github.com/users/ywchiu/starred{/owner}{/repo}
## 11 https://api.github.com/users/ywchiu/starred{/owner}{/repo}
## 12 https://api.github.com/users/ywchiu/starred{/owner}{/repo}
## owner.subscriptions_url
## 1 https://api.github.com/users/ywchiu/subscriptions
## 2 https://api.github.com/users/ywchiu/subscriptions
## 3 https://api.github.com/users/ywchiu/subscriptions
## 4 https://api.github.com/users/ywchiu/subscriptions
## 5 https://api.github.com/users/ywchiu/subscriptions
## 6 https://api.github.com/users/ywchiu/subscriptions
## 7 https://api.github.com/users/ywchiu/subscriptions
## 8 https://api.github.com/users/ywchiu/subscriptions
## 9 https://api.github.com/users/ywchiu/subscriptions
## 10 https://api.github.com/users/ywchiu/subscriptions
## 11 https://api.github.com/users/ywchiu/subscriptions
## 12 https://api.github.com/users/ywchiu/subscriptions
## owner.organizations_url
## 1 https://api.github.com/users/ywchiu/orgs
## 2 https://api.github.com/users/ywchiu/orgs
## 3 https://api.github.com/users/ywchiu/orgs
## 4 https://api.github.com/users/ywchiu/orgs
## 5 https://api.github.com/users/ywchiu/orgs
## 6 https://api.github.com/users/ywchiu/orgs
## 7 https://api.github.com/users/ywchiu/orgs
## 8 https://api.github.com/users/ywchiu/orgs
## 9 https://api.github.com/users/ywchiu/orgs
## 10 https://api.github.com/users/ywchiu/orgs
## 11 https://api.github.com/users/ywchiu/orgs
## 12 https://api.github.com/users/ywchiu/orgs
## owner.repos_url
## 1 https://api.github.com/users/ywchiu/repos
## 2 https://api.github.com/users/ywchiu/repos
## 3 https://api.github.com/users/ywchiu/repos
## 4 https://api.github.com/users/ywchiu/repos
## 5 https://api.github.com/users/ywchiu/repos
## 6 https://api.github.com/users/ywchiu/repos
## 7 https://api.github.com/users/ywchiu/repos
## 8 https://api.github.com/users/ywchiu/repos
## 9 https://api.github.com/users/ywchiu/repos
## 10 https://api.github.com/users/ywchiu/repos
## 11 https://api.github.com/users/ywchiu/repos
## 12 https://api.github.com/users/ywchiu/repos
## owner.events_url
## 1 https://api.github.com/users/ywchiu/events{/privacy}
## 2 https://api.github.com/users/ywchiu/events{/privacy}
## 3 https://api.github.com/users/ywchiu/events{/privacy}
## 4 https://api.github.com/users/ywchiu/events{/privacy}
## 5 https://api.github.com/users/ywchiu/events{/privacy}
## 6 https://api.github.com/users/ywchiu/events{/privacy}
## 7 https://api.github.com/users/ywchiu/events{/privacy}
## 8 https://api.github.com/users/ywchiu/events{/privacy}
## 9 https://api.github.com/users/ywchiu/events{/privacy}
## 10 https://api.github.com/users/ywchiu/events{/privacy}
## 11 https://api.github.com/users/ywchiu/events{/privacy}
## 12 https://api.github.com/users/ywchiu/events{/privacy}
## owner.received_events_url owner.type
## 1 https://api.github.com/users/ywchiu/received_events User
## 2 https://api.github.com/users/ywchiu/received_events User
## 3 https://api.github.com/users/ywchiu/received_events User
## 4 https://api.github.com/users/ywchiu/received_events User
## 5 https://api.github.com/users/ywchiu/received_events User
## 6 https://api.github.com/users/ywchiu/received_events User
## 7 https://api.github.com/users/ywchiu/received_events User
## 8 https://api.github.com/users/ywchiu/received_events User
## 9 https://api.github.com/users/ywchiu/received_events User
## 10 https://api.github.com/users/ywchiu/received_events User
## 11 https://api.github.com/users/ywchiu/received_events User
## 12 https://api.github.com/users/ywchiu/received_events User
## owner.site_admin private
## 1 FALSE FALSE
## 2 FALSE FALSE
## 3 FALSE FALSE
## 4 FALSE FALSE
## 5 FALSE FALSE
## 6 FALSE FALSE
## 7 FALSE FALSE
## 8 FALSE FALSE
## 9 FALSE FALSE
## 10 FALSE FALSE
## 11 FALSE FALSE
## 12 FALSE FALSE
## html_url
## 1 https://github.com/ywchiu/bitstarter
## 2 https://github.com/ywchiu/DSPCourse
## 3 https://github.com/ywchiu/icultureclock
## 4 https://github.com/ywchiu/iculturecolorclock
## 5 https://github.com/ywchiu/Java-ETL-Course
## 6 https://github.com/ywchiu/ka-term-replace
## 7 https://github.com/ywchiu/ka-translate
## 8 https://github.com/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication
## 9 https://github.com/ywchiu/mldm_study
## 10 https://github.com/ywchiu/rbasic
## 11 https://github.com/ywchiu/rhadoopcourse
## 12 https://github.com/ywchiu/SocialNetworkWithR
## description fork
## 1 bitstarter FALSE
## 2 FALSE
## 3 iculture clock FALSE
## 4 iculture color clock FALSE
## 5 Java ETL 隤脩\xa8\x95\x9d\x90 FALSE
## 6 Khan Academy Subtitle Chinese Replacement FALSE
## 7 Subtitle Translation FALSE
## 8 Machine-Learning-For-Hackers---Chapter-3-Classfication FALSE
## 9 mldm_study FALSE
## 10 FALSE
## 11 rhadoopcourse FALSE
## 12 Social Network Analysis With R FALSE
## url
## 1 https://api.github.com/repos/ywchiu/bitstarter
## 2 https://api.github.com/repos/ywchiu/DSPCourse
## 3 https://api.github.com/repos/ywchiu/icultureclock
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course
## 6 https://api.github.com/repos/ywchiu/ka-term-replace
## 7 https://api.github.com/repos/ywchiu/ka-translate
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication
## 9 https://api.github.com/repos/ywchiu/mldm_study
## 10 https://api.github.com/repos/ywchiu/rbasic
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR
## forks_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/forks
## 2 https://api.github.com/repos/ywchiu/DSPCourse/forks
## 3 https://api.github.com/repos/ywchiu/icultureclock/forks
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/forks
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/forks
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/forks
## 7 https://api.github.com/repos/ywchiu/ka-translate/forks
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/forks
## 9 https://api.github.com/repos/ywchiu/mldm_study/forks
## 10 https://api.github.com/repos/ywchiu/rbasic/forks
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/forks
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/forks
## keys_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/keys{/key_id}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/keys{/key_id}
## 3 https://api.github.com/repos/ywchiu/icultureclock/keys{/key_id}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/keys{/key_id}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/keys{/key_id}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/keys{/key_id}
## 7 https://api.github.com/repos/ywchiu/ka-translate/keys{/key_id}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/keys{/key_id}
## 9 https://api.github.com/repos/ywchiu/mldm_study/keys{/key_id}
## 10 https://api.github.com/repos/ywchiu/rbasic/keys{/key_id}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/keys{/key_id}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/keys{/key_id}
## collaborators_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/collaborators{/collaborator}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/collaborators{/collaborator}
## 3 https://api.github.com/repos/ywchiu/icultureclock/collaborators{/collaborator}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/collaborators{/collaborator}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/collaborators{/collaborator}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/collaborators{/collaborator}
## 7 https://api.github.com/repos/ywchiu/ka-translate/collaborators{/collaborator}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/collaborators{/collaborator}
## 9 https://api.github.com/repos/ywchiu/mldm_study/collaborators{/collaborator}
## 10 https://api.github.com/repos/ywchiu/rbasic/collaborators{/collaborator}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/collaborators{/collaborator}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/collaborators{/collaborator}
## teams_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/teams
## 2 https://api.github.com/repos/ywchiu/DSPCourse/teams
## 3 https://api.github.com/repos/ywchiu/icultureclock/teams
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/teams
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/teams
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/teams
## 7 https://api.github.com/repos/ywchiu/ka-translate/teams
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/teams
## 9 https://api.github.com/repos/ywchiu/mldm_study/teams
## 10 https://api.github.com/repos/ywchiu/rbasic/teams
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/teams
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/teams
## hooks_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/hooks
## 2 https://api.github.com/repos/ywchiu/DSPCourse/hooks
## 3 https://api.github.com/repos/ywchiu/icultureclock/hooks
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/hooks
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/hooks
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/hooks
## 7 https://api.github.com/repos/ywchiu/ka-translate/hooks
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/hooks
## 9 https://api.github.com/repos/ywchiu/mldm_study/hooks
## 10 https://api.github.com/repos/ywchiu/rbasic/hooks
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/hooks
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/hooks
## issue_events_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/issues/events{/number}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/issues/events{/number}
## 3 https://api.github.com/repos/ywchiu/icultureclock/issues/events{/number}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/issues/events{/number}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/issues/events{/number}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/issues/events{/number}
## 7 https://api.github.com/repos/ywchiu/ka-translate/issues/events{/number}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/issues/events{/number}
## 9 https://api.github.com/repos/ywchiu/mldm_study/issues/events{/number}
## 10 https://api.github.com/repos/ywchiu/rbasic/issues/events{/number}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/issues/events{/number}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/issues/events{/number}
## events_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/events
## 2 https://api.github.com/repos/ywchiu/DSPCourse/events
## 3 https://api.github.com/repos/ywchiu/icultureclock/events
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/events
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/events
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/events
## 7 https://api.github.com/repos/ywchiu/ka-translate/events
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/events
## 9 https://api.github.com/repos/ywchiu/mldm_study/events
## 10 https://api.github.com/repos/ywchiu/rbasic/events
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/events
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/events
## assignees_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/assignees{/user}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/assignees{/user}
## 3 https://api.github.com/repos/ywchiu/icultureclock/assignees{/user}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/assignees{/user}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/assignees{/user}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/assignees{/user}
## 7 https://api.github.com/repos/ywchiu/ka-translate/assignees{/user}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/assignees{/user}
## 9 https://api.github.com/repos/ywchiu/mldm_study/assignees{/user}
## 10 https://api.github.com/repos/ywchiu/rbasic/assignees{/user}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/assignees{/user}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/assignees{/user}
## branches_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/branches{/branch}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/branches{/branch}
## 3 https://api.github.com/repos/ywchiu/icultureclock/branches{/branch}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/branches{/branch}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/branches{/branch}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/branches{/branch}
## 7 https://api.github.com/repos/ywchiu/ka-translate/branches{/branch}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/branches{/branch}
## 9 https://api.github.com/repos/ywchiu/mldm_study/branches{/branch}
## 10 https://api.github.com/repos/ywchiu/rbasic/branches{/branch}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/branches{/branch}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/branches{/branch}
## tags_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/tags
## 2 https://api.github.com/repos/ywchiu/DSPCourse/tags
## 3 https://api.github.com/repos/ywchiu/icultureclock/tags
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/tags
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/tags
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/tags
## 7 https://api.github.com/repos/ywchiu/ka-translate/tags
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/tags
## 9 https://api.github.com/repos/ywchiu/mldm_study/tags
## 10 https://api.github.com/repos/ywchiu/rbasic/tags
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/tags
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/tags
## blobs_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/git/blobs{/sha}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/git/blobs{/sha}
## 3 https://api.github.com/repos/ywchiu/icultureclock/git/blobs{/sha}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/git/blobs{/sha}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/git/blobs{/sha}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/git/blobs{/sha}
## 7 https://api.github.com/repos/ywchiu/ka-translate/git/blobs{/sha}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/git/blobs{/sha}
## 9 https://api.github.com/repos/ywchiu/mldm_study/git/blobs{/sha}
## 10 https://api.github.com/repos/ywchiu/rbasic/git/blobs{/sha}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/git/blobs{/sha}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/git/blobs{/sha}
## git_tags_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/git/tags{/sha}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/git/tags{/sha}
## 3 https://api.github.com/repos/ywchiu/icultureclock/git/tags{/sha}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/git/tags{/sha}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/git/tags{/sha}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/git/tags{/sha}
## 7 https://api.github.com/repos/ywchiu/ka-translate/git/tags{/sha}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/git/tags{/sha}
## 9 https://api.github.com/repos/ywchiu/mldm_study/git/tags{/sha}
## 10 https://api.github.com/repos/ywchiu/rbasic/git/tags{/sha}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/git/tags{/sha}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/git/tags{/sha}
## git_refs_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/git/refs{/sha}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/git/refs{/sha}
## 3 https://api.github.com/repos/ywchiu/icultureclock/git/refs{/sha}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/git/refs{/sha}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/git/refs{/sha}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/git/refs{/sha}
## 7 https://api.github.com/repos/ywchiu/ka-translate/git/refs{/sha}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/git/refs{/sha}
## 9 https://api.github.com/repos/ywchiu/mldm_study/git/refs{/sha}
## 10 https://api.github.com/repos/ywchiu/rbasic/git/refs{/sha}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/git/refs{/sha}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/git/refs{/sha}
## trees_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/git/trees{/sha}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/git/trees{/sha}
## 3 https://api.github.com/repos/ywchiu/icultureclock/git/trees{/sha}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/git/trees{/sha}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/git/trees{/sha}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/git/trees{/sha}
## 7 https://api.github.com/repos/ywchiu/ka-translate/git/trees{/sha}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/git/trees{/sha}
## 9 https://api.github.com/repos/ywchiu/mldm_study/git/trees{/sha}
## 10 https://api.github.com/repos/ywchiu/rbasic/git/trees{/sha}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/git/trees{/sha}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/git/trees{/sha}
## statuses_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/statuses/{sha}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/statuses/{sha}
## 3 https://api.github.com/repos/ywchiu/icultureclock/statuses/{sha}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/statuses/{sha}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/statuses/{sha}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/statuses/{sha}
## 7 https://api.github.com/repos/ywchiu/ka-translate/statuses/{sha}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/statuses/{sha}
## 9 https://api.github.com/repos/ywchiu/mldm_study/statuses/{sha}
## 10 https://api.github.com/repos/ywchiu/rbasic/statuses/{sha}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/statuses/{sha}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/statuses/{sha}
## languages_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/languages
## 2 https://api.github.com/repos/ywchiu/DSPCourse/languages
## 3 https://api.github.com/repos/ywchiu/icultureclock/languages
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/languages
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/languages
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/languages
## 7 https://api.github.com/repos/ywchiu/ka-translate/languages
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/languages
## 9 https://api.github.com/repos/ywchiu/mldm_study/languages
## 10 https://api.github.com/repos/ywchiu/rbasic/languages
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/languages
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/languages
## stargazers_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/stargazers
## 2 https://api.github.com/repos/ywchiu/DSPCourse/stargazers
## 3 https://api.github.com/repos/ywchiu/icultureclock/stargazers
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/stargazers
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/stargazers
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/stargazers
## 7 https://api.github.com/repos/ywchiu/ka-translate/stargazers
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/stargazers
## 9 https://api.github.com/repos/ywchiu/mldm_study/stargazers
## 10 https://api.github.com/repos/ywchiu/rbasic/stargazers
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/stargazers
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/stargazers
## contributors_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/contributors
## 2 https://api.github.com/repos/ywchiu/DSPCourse/contributors
## 3 https://api.github.com/repos/ywchiu/icultureclock/contributors
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/contributors
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/contributors
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/contributors
## 7 https://api.github.com/repos/ywchiu/ka-translate/contributors
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/contributors
## 9 https://api.github.com/repos/ywchiu/mldm_study/contributors
## 10 https://api.github.com/repos/ywchiu/rbasic/contributors
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/contributors
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/contributors
## subscribers_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/subscribers
## 2 https://api.github.com/repos/ywchiu/DSPCourse/subscribers
## 3 https://api.github.com/repos/ywchiu/icultureclock/subscribers
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/subscribers
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/subscribers
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/subscribers
## 7 https://api.github.com/repos/ywchiu/ka-translate/subscribers
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/subscribers
## 9 https://api.github.com/repos/ywchiu/mldm_study/subscribers
## 10 https://api.github.com/repos/ywchiu/rbasic/subscribers
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/subscribers
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/subscribers
## subscription_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/subscription
## 2 https://api.github.com/repos/ywchiu/DSPCourse/subscription
## 3 https://api.github.com/repos/ywchiu/icultureclock/subscription
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/subscription
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/subscription
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/subscription
## 7 https://api.github.com/repos/ywchiu/ka-translate/subscription
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/subscription
## 9 https://api.github.com/repos/ywchiu/mldm_study/subscription
## 10 https://api.github.com/repos/ywchiu/rbasic/subscription
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/subscription
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/subscription
## commits_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/commits{/sha}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/commits{/sha}
## 3 https://api.github.com/repos/ywchiu/icultureclock/commits{/sha}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/commits{/sha}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/commits{/sha}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/commits{/sha}
## 7 https://api.github.com/repos/ywchiu/ka-translate/commits{/sha}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/commits{/sha}
## 9 https://api.github.com/repos/ywchiu/mldm_study/commits{/sha}
## 10 https://api.github.com/repos/ywchiu/rbasic/commits{/sha}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/commits{/sha}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/commits{/sha}
## git_commits_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/git/commits{/sha}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/git/commits{/sha}
## 3 https://api.github.com/repos/ywchiu/icultureclock/git/commits{/sha}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/git/commits{/sha}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/git/commits{/sha}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/git/commits{/sha}
## 7 https://api.github.com/repos/ywchiu/ka-translate/git/commits{/sha}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/git/commits{/sha}
## 9 https://api.github.com/repos/ywchiu/mldm_study/git/commits{/sha}
## 10 https://api.github.com/repos/ywchiu/rbasic/git/commits{/sha}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/git/commits{/sha}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/git/commits{/sha}
## comments_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/comments{/number}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/comments{/number}
## 3 https://api.github.com/repos/ywchiu/icultureclock/comments{/number}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/comments{/number}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/comments{/number}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/comments{/number}
## 7 https://api.github.com/repos/ywchiu/ka-translate/comments{/number}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/comments{/number}
## 9 https://api.github.com/repos/ywchiu/mldm_study/comments{/number}
## 10 https://api.github.com/repos/ywchiu/rbasic/comments{/number}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/comments{/number}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/comments{/number}
## issue_comment_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/issues/comments/{number}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/issues/comments/{number}
## 3 https://api.github.com/repos/ywchiu/icultureclock/issues/comments/{number}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/issues/comments/{number}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/issues/comments/{number}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/issues/comments/{number}
## 7 https://api.github.com/repos/ywchiu/ka-translate/issues/comments/{number}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/issues/comments/{number}
## 9 https://api.github.com/repos/ywchiu/mldm_study/issues/comments/{number}
## 10 https://api.github.com/repos/ywchiu/rbasic/issues/comments/{number}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/issues/comments/{number}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/issues/comments/{number}
## contents_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/contents/{+path}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/contents/{+path}
## 3 https://api.github.com/repos/ywchiu/icultureclock/contents/{+path}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/contents/{+path}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/contents/{+path}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/contents/{+path}
## 7 https://api.github.com/repos/ywchiu/ka-translate/contents/{+path}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/contents/{+path}
## 9 https://api.github.com/repos/ywchiu/mldm_study/contents/{+path}
## 10 https://api.github.com/repos/ywchiu/rbasic/contents/{+path}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/contents/{+path}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/contents/{+path}
## compare_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/compare/{base}...{head}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/compare/{base}...{head}
## 3 https://api.github.com/repos/ywchiu/icultureclock/compare/{base}...{head}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/compare/{base}...{head}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/compare/{base}...{head}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/compare/{base}...{head}
## 7 https://api.github.com/repos/ywchiu/ka-translate/compare/{base}...{head}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/compare/{base}...{head}
## 9 https://api.github.com/repos/ywchiu/mldm_study/compare/{base}...{head}
## 10 https://api.github.com/repos/ywchiu/rbasic/compare/{base}...{head}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/compare/{base}...{head}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/compare/{base}...{head}
## merges_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/merges
## 2 https://api.github.com/repos/ywchiu/DSPCourse/merges
## 3 https://api.github.com/repos/ywchiu/icultureclock/merges
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/merges
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/merges
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/merges
## 7 https://api.github.com/repos/ywchiu/ka-translate/merges
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/merges
## 9 https://api.github.com/repos/ywchiu/mldm_study/merges
## 10 https://api.github.com/repos/ywchiu/rbasic/merges
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/merges
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/merges
## archive_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/{archive_format}{/ref}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/{archive_format}{/ref}
## 3 https://api.github.com/repos/ywchiu/icultureclock/{archive_format}{/ref}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/{archive_format}{/ref}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/{archive_format}{/ref}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/{archive_format}{/ref}
## 7 https://api.github.com/repos/ywchiu/ka-translate/{archive_format}{/ref}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/{archive_format}{/ref}
## 9 https://api.github.com/repos/ywchiu/mldm_study/{archive_format}{/ref}
## 10 https://api.github.com/repos/ywchiu/rbasic/{archive_format}{/ref}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/{archive_format}{/ref}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/{archive_format}{/ref}
## downloads_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/downloads
## 2 https://api.github.com/repos/ywchiu/DSPCourse/downloads
## 3 https://api.github.com/repos/ywchiu/icultureclock/downloads
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/downloads
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/downloads
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/downloads
## 7 https://api.github.com/repos/ywchiu/ka-translate/downloads
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/downloads
## 9 https://api.github.com/repos/ywchiu/mldm_study/downloads
## 10 https://api.github.com/repos/ywchiu/rbasic/downloads
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/downloads
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/downloads
## issues_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/issues{/number}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/issues{/number}
## 3 https://api.github.com/repos/ywchiu/icultureclock/issues{/number}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/issues{/number}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/issues{/number}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/issues{/number}
## 7 https://api.github.com/repos/ywchiu/ka-translate/issues{/number}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/issues{/number}
## 9 https://api.github.com/repos/ywchiu/mldm_study/issues{/number}
## 10 https://api.github.com/repos/ywchiu/rbasic/issues{/number}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/issues{/number}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/issues{/number}
## pulls_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/pulls{/number}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/pulls{/number}
## 3 https://api.github.com/repos/ywchiu/icultureclock/pulls{/number}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/pulls{/number}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/pulls{/number}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/pulls{/number}
## 7 https://api.github.com/repos/ywchiu/ka-translate/pulls{/number}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/pulls{/number}
## 9 https://api.github.com/repos/ywchiu/mldm_study/pulls{/number}
## 10 https://api.github.com/repos/ywchiu/rbasic/pulls{/number}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/pulls{/number}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/pulls{/number}
## milestones_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/milestones{/number}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/milestones{/number}
## 3 https://api.github.com/repos/ywchiu/icultureclock/milestones{/number}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/milestones{/number}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/milestones{/number}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/milestones{/number}
## 7 https://api.github.com/repos/ywchiu/ka-translate/milestones{/number}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/milestones{/number}
## 9 https://api.github.com/repos/ywchiu/mldm_study/milestones{/number}
## 10 https://api.github.com/repos/ywchiu/rbasic/milestones{/number}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/milestones{/number}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/milestones{/number}
## notifications_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/notifications{?since,all,participating}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/notifications{?since,all,participating}
## 3 https://api.github.com/repos/ywchiu/icultureclock/notifications{?since,all,participating}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/notifications{?since,all,participating}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/notifications{?since,all,participating}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/notifications{?since,all,participating}
## 7 https://api.github.com/repos/ywchiu/ka-translate/notifications{?since,all,participating}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/notifications{?since,all,participating}
## 9 https://api.github.com/repos/ywchiu/mldm_study/notifications{?since,all,participating}
## 10 https://api.github.com/repos/ywchiu/rbasic/notifications{?since,all,participating}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/notifications{?since,all,participating}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/notifications{?since,all,participating}
## labels_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/labels{/name}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/labels{/name}
## 3 https://api.github.com/repos/ywchiu/icultureclock/labels{/name}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/labels{/name}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/labels{/name}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/labels{/name}
## 7 https://api.github.com/repos/ywchiu/ka-translate/labels{/name}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/labels{/name}
## 9 https://api.github.com/repos/ywchiu/mldm_study/labels{/name}
## 10 https://api.github.com/repos/ywchiu/rbasic/labels{/name}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/labels{/name}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/labels{/name}
## releases_url
## 1 https://api.github.com/repos/ywchiu/bitstarter/releases{/id}
## 2 https://api.github.com/repos/ywchiu/DSPCourse/releases{/id}
## 3 https://api.github.com/repos/ywchiu/icultureclock/releases{/id}
## 4 https://api.github.com/repos/ywchiu/iculturecolorclock/releases{/id}
## 5 https://api.github.com/repos/ywchiu/Java-ETL-Course/releases{/id}
## 6 https://api.github.com/repos/ywchiu/ka-term-replace/releases{/id}
## 7 https://api.github.com/repos/ywchiu/ka-translate/releases{/id}
## 8 https://api.github.com/repos/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication/releases{/id}
## 9 https://api.github.com/repos/ywchiu/mldm_study/releases{/id}
## 10 https://api.github.com/repos/ywchiu/rbasic/releases{/id}
## 11 https://api.github.com/repos/ywchiu/rhadoopcourse/releases{/id}
## 12 https://api.github.com/repos/ywchiu/SocialNetworkWithR/releases{/id}
## created_at updated_at pushed_at
## 1 2013-07-10T08:13:38Z 2014-04-25T15:26:16Z 2013-08-08T00:02:56Z
## 2 2014-05-11T01:36:01Z 2014-06-23T03:55:20Z 2014-06-30T14:56:19Z
## 3 2013-11-03T01:30:46Z 2013-11-15T14:59:04Z 2013-11-03T05:22:35Z
## 4 2013-11-03T01:17:15Z 2013-11-03T01:39:27Z 2013-11-03T01:39:24Z
## 5 2014-06-19T03:48:27Z 2014-06-19T03:53:39Z 2014-06-19T03:53:39Z
## 6 2012-12-18T10:02:29Z 2013-12-22T06:41:04Z 2012-12-18T10:40:42Z
## 7 2012-08-03T07:07:07Z 2013-12-11T08:30:30Z 2012-08-03T08:55:38Z
## 8 2013-04-30T09:34:38Z 2014-01-08T20:39:16Z 2013-04-30T09:46:32Z
## 9 2013-04-29T16:52:14Z 2013-04-29T16:52:14Z 2013-04-29T16:52:14Z
## 10 2014-08-07T01:19:17Z 2014-08-13T16:48:18Z 2014-08-14T02:34:13Z
## 11 2014-07-21T03:00:15Z 2014-07-22T00:05:00Z 2014-07-22T00:05:00Z
## 12 2013-11-12T11:49:51Z 2013-11-18T05:26:17Z 2013-11-18T05:26:16Z
## git_url
## 1 git://github.com/ywchiu/bitstarter.git
## 2 git://github.com/ywchiu/DSPCourse.git
## 3 git://github.com/ywchiu/icultureclock.git
## 4 git://github.com/ywchiu/iculturecolorclock.git
## 5 git://github.com/ywchiu/Java-ETL-Course.git
## 6 git://github.com/ywchiu/ka-term-replace.git
## 7 git://github.com/ywchiu/ka-translate.git
## 8 git://github.com/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication.git
## 9 git://github.com/ywchiu/mldm_study.git
## 10 git://github.com/ywchiu/rbasic.git
## 11 git://github.com/ywchiu/rhadoopcourse.git
## 12 git://github.com/ywchiu/SocialNetworkWithR.git
## ssh_url
## 1 git@github.com:ywchiu/bitstarter.git
## 2 git@github.com:ywchiu/DSPCourse.git
## 3 git@github.com:ywchiu/icultureclock.git
## 4 git@github.com:ywchiu/iculturecolorclock.git
## 5 git@github.com:ywchiu/Java-ETL-Course.git
## 6 git@github.com:ywchiu/ka-term-replace.git
## 7 git@github.com:ywchiu/ka-translate.git
## 8 git@github.com:ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication.git
## 9 git@github.com:ywchiu/mldm_study.git
## 10 git@github.com:ywchiu/rbasic.git
## 11 git@github.com:ywchiu/rhadoopcourse.git
## 12 git@github.com:ywchiu/SocialNetworkWithR.git
## clone_url
## 1 https://github.com/ywchiu/bitstarter.git
## 2 https://github.com/ywchiu/DSPCourse.git
## 3 https://github.com/ywchiu/icultureclock.git
## 4 https://github.com/ywchiu/iculturecolorclock.git
## 5 https://github.com/ywchiu/Java-ETL-Course.git
## 6 https://github.com/ywchiu/ka-term-replace.git
## 7 https://github.com/ywchiu/ka-translate.git
## 8 https://github.com/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication.git
## 9 https://github.com/ywchiu/mldm_study.git
## 10 https://github.com/ywchiu/rbasic.git
## 11 https://github.com/ywchiu/rhadoopcourse.git
## 12 https://github.com/ywchiu/SocialNetworkWithR.git
## svn_url
## 1 https://github.com/ywchiu/bitstarter
## 2 https://github.com/ywchiu/DSPCourse
## 3 https://github.com/ywchiu/icultureclock
## 4 https://github.com/ywchiu/iculturecolorclock
## 5 https://github.com/ywchiu/Java-ETL-Course
## 6 https://github.com/ywchiu/ka-term-replace
## 7 https://github.com/ywchiu/ka-translate
## 8 https://github.com/ywchiu/Machine-Learning-For-Hackers---Chapter-3-Classfication
## 9 https://github.com/ywchiu/mldm_study
## 10 https://github.com/ywchiu/rbasic
## 11 https://github.com/ywchiu/rhadoopcourse
## 12 https://github.com/ywchiu/SocialNetworkWithR
## homepage size stargazers_count watchers_count language has_issues
## 1 NA 320 0 0 JavaScript TRUE
## 2 NA 5365 2 2 <NA> TRUE
## 3 NA 3108 1 1 JavaScript TRUE
## 4 NA 1816 0 0 <NA> TRUE
## 5 NA 140 0 0 <NA> TRUE
## 6 NA 436 0 0 Python TRUE
## 7 NA 132 2 2 Python TRUE
## 8 NA 15256 0 0 R TRUE
## 9 NA 56 0 0 <NA> TRUE
## 10 NA 156 0 0 R TRUE
## 11 NA 161 0 0 R TRUE
## 12 NA 2860 0 0 JavaScript TRUE
## has_downloads has_wiki forks_count mirror_url open_issues_count forks
## 1 TRUE TRUE 0 NA 0 0
## 2 TRUE TRUE 4 NA 0 4
## 3 TRUE TRUE 1 NA 0 1
## 4 TRUE TRUE 0 NA 0 0
## 5 TRUE TRUE 0 NA 0 0
## 6 TRUE TRUE 0 NA 0 0
## 7 TRUE TRUE 0 NA 0 0
## 8 TRUE TRUE 0 NA 0 0
## 9 TRUE TRUE 0 NA 0 0
## 10 TRUE TRUE 0 NA 0 0
## 11 TRUE TRUE 1 NA 0 1
## 12 TRUE TRUE 0 NA 0 0
## open_issues watchers default_branch
## 1 0 0 master
## 2 0 2 master
## 3 0 1 master
## 4 0 0 master
## 5 0 0 master
## 6 0 0 master
## 7 0 2 master
## 8 0 0 master
## 9 0 0 master
## 10 0 0 master
## 11 0 0 master
## 12 0 0 master
names(jsondata)
## [1] "id" "name" "full_name"
## [4] "owner" "private" "html_url"
## [7] "description" "fork" "url"
## [10] "forks_url" "keys_url" "collaborators_url"
## [13] "teams_url" "hooks_url" "issue_events_url"
## [16] "events_url" "assignees_url" "branches_url"
## [19] "tags_url" "blobs_url" "git_tags_url"
## [22] "git_refs_url" "trees_url" "statuses_url"
## [25] "languages_url" "stargazers_url" "contributors_url"
## [28] "subscribers_url" "subscription_url" "commits_url"
## [31] "git_commits_url" "comments_url" "issue_comment_url"
## [34] "contents_url" "compare_url" "merges_url"
## [37] "archive_url" "downloads_url" "issues_url"
## [40] "pulls_url" "milestones_url" "notifications_url"
## [43] "labels_url" "releases_url" "created_at"
## [46] "updated_at" "pushed_at" "git_url"
## [49] "ssh_url" "clone_url" "svn_url"
## [52] "homepage" "size" "stargazers_count"
## [55] "watchers_count" "language" "has_issues"
## [58] "has_downloads" "has_wiki" "forks_count"
## [61] "mirror_url" "open_issues_count" "forks"
## [64] "open_issues" "watchers" "default_branch"
撰寫網頁Crawler
con = url("http://travel.rakuten.com/hotel/Japan-Hokkaido-Noboribetsu-Noboribetsu_Onsen_Noboribetsu_Grand_Hotel/39175/")
htmlcode = readLines(con)
close(con)
htmlcode
## [1] "<!DOCTYPE html>"
## [2] "<html>"
## [3] "<head>"
## [4] "<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\" />"
## [5] "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">"
## [6] "<title>Noboribetsu Onsen Noboribetsu Grand Hotel - Rakuten Travel</title>"
## [7] "<meta name=\"description\" content=\"NOBORIBETSU GRAND HOTEL IS MOST PRESTIGIOUS HOTEL HAVING A NUMBER OF GUESTS BOTH FROM JAPAN AND OVERSEAS, AND IS CALLED GUEST HOUSE IN NOBORIBETSU ONSEN.\">"
## [8] "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=2, user-scalable=yes\">"
## [9] "<meta name=\"format-detection\" content=\"telephone=no\">"
## [10] "<meta property=\"og:heading\" content=\"\">"
## [11] "<meta property=\"og:description\" content=\"NOBORIBETSU GRAND HOTEL IS MOST PRESTIGIOUS HOTEL HAVING A NUMBER OF GUESTS BOTH FROM JAPAN AND OVERSEAS, AND IS CALLED GUEST HOUSE IN NOBORIBETSU ONSEN.\">"
## [12] "<meta property=\"og:type\" content=\"\">"
## [13] "<meta property=\"og:site_name\" content=\"\">"
## [14] "<meta property=\"og:image\" content=\"\">"
## [15] "<meta property=\"fb:admins\" content=\"\">"
## [16] "<link rel=\"apple-touch-icon-precomposed\" href=\"\">"
## [17] "<link rel=\"canonical\" href=\"http://travel.rakuten.com/hotel/Japan-Hokkaido-Noboribetsu_Noboribetsu_Onsen_Noboribetsu_Grand_Hotel/39175/\">"
## [18] ""
## [19] "<link rel=\"stylesheet\" href=\"http://img.travel.rakuten.co.jp/m17n/share/css/common.min.css?version=1.0.4\">"
## [20] "<!--[if lt IE 9]>"
## [21] "<link rel=\"stylesheet\" href=\"http://img.travel.rakuten.co.jp/m17n/share/css/ie.css\">"
## [22] "<![endif]-->"
## [23] "<script src=\"http://img.travel.rakuten.co.jp/m17n/share/tt/common/mbox.js\" type=\"text/javascript\"></script>"
## [24] ""
## [25] "</head>"
## [26] "<body>"
## [27] "\t<div id=\"page\">"
## [28] "\t\t<div id=\"header\">"
## [29] "\t<div class=\"nav-primary\">"
## [30] "\t\t<div class=\"brand\">"
## [31] "\t\t\t<a href=\"http://travel.rakuten.com\" class=\"logo\">"
## [32] "\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/m17n/share/img/common/logo.gif\" alt=\"Rakuten Travel\" width=\"118\" height=\"41\">"
## [33] "\t\t\t</a>"
## [34] "\t\t</div>"
## [35] "\t\t<ul class=\"nav-utility list-nav\">"
## [36] "\t\t\t<li class=\"language\">"
## [37] "\t\t\t\t<div data-role=\"dropdown\" data-position=\"right,bottom\" class=\"nav-tile\">"
## [38] "\t\t\t\t\t<i class=\"icon-globe\"></i><span class=\"nav-label\">English</span>"
## [39] "\t\t\t\t</div>"
## [40] "\t\t\t\t<div data-role=\"dropdown-content\" class=\"nav-tile-content hide\">"
## [41] "\t\t\t\t\t<ul class=\"list-block\">"
## [42] "\t\t\t\t\t\t<li><a href=\"http://travel.rakuten.co.kr\">\xeb\x8c\u0080\xed\x95紡窱\xad(\xed\x95筏\xec)</a></li>"
## [43] "\t\t\t\t\t\t<li><a href=\"http://travel.rakuten.com.tw\">\xe5\xe7(蝜\xab葉\xe6\x96\x87)</a></li>"
## [44] "\t\t\t\t\t\t<li><a href=\"http://travel.rakuten.com.hk\">擐葛(蝜\xab葉\xe6\x96\x87)</a></li>"
## [45] "\t\t\t\t\t\t<li><a href=\"http://travel.rakuten.co.jp\">\xe6\xe6(\xe6\xe6隤\x9e)</a></li>"
## [46] "\t\t\t\t\t\t</ul>"
## [47] "\t\t\t\t</div>"
## [48] "\t\t\t</li>"
## [49] "\t\t\t<li class=\"account\">"
## [50] "\t\t\t\t<div class=\"nav-tile nav-link\">"
## [51] "\t\t\t\t\t<a href=\"https://book.travel.rakuten.com/itinerary/reservation\">"
## [52] "\t\t\t\t\t\t<i class=\"icon-account\"></i>"
## [53] "\t\t\t\t\t</a>"
## [54] "\t\t\t\t\t<a href=\"https://book.travel.rakuten.com/itinerary/reservation\" class=\"nav-label\">"
## [55] "\t\t\t\t\t\tMy Bookings</a>"
## [56] "\t\t\t\t</div>"
## [57] "\t\t\t</li>"
## [58] "\t\t</ul>"
## [59] "\t</div>"
## [60] "</div><div id=\"content\" class=\"area-layout02 layout-fluid\">"
## [61] "\t\t\t<div class=\"subheader\">"
## [62] "\t\t\t\t<div class=\"nav-primary\">"
## [63] "\t<ol class=\"breadcrumb\">"
## [64] "\t\t<li><a href=\"http://travel.rakuten.com/\">Home</a></li>"
## [65] "\t\t<li><a href=\"/hotellist/Japan/JP/\">Japan</a></li>"
## [66] "\t\t<li><a href=\"/hotellist/Japan-Hokkaido/JP_JP-01/\">Hokkaido</a></li>"
## [67] "\t\t<li><a href=\"/hotellist/Japan-Hokkaido-Noboribetsu/10868/\">Noboribetsu</a></li>"
## [68] "\t\t<li>Noboribetsu Onsen Noboribetsu Grand Hotel</li>"
## [69] "\t\t</ol>"
## [70] "</div>"
## [71] "</div>"
## [72] "\t\t\t<div class=\"subarea\">"
## [73] "\t\t\t\t<button id=\"waiting\" class=\"hide\" data-role=\"modal\" data-target=\"#searchLoading\"></button>"
## [74] "<div id=\"searchLoading\" class=\"modal hide\">"
## [75] " <div class=\"container modal-content\">"
## [76] " <span data-role=\"data-dismiss\" class=\"icon-close\"></span>"
## [77] " <div class=\"content\">"
## [78] " <div class=\"center\">"
## [79] " <div class=\"title02\">Loading content...please wait</div>"
## [80] " </div>"
## [81] " <div class=\"center\"><img alt=\"Loading\" src=\"http://img.travel.rakuten.co.jp/m17n/share/img/common/loading.gif\"/></div>"
## [82] " </div>"
## [83] " </div>"
## [84] "</div>"
## [85] ""
## [86] "<div class=\"container00 featureSearch\">"
## [87] "\t<div class=\"heading\">"
## [88] "\t\t<h2 class=\"title\">"
## [89] "\t\t\tSearch Hotels</h2>"
## [90] "\t</div>"
## [91] "\t<div class=\"content\" id=\"mainSearchBox\">"
## [92] "\t\t<form class=\"form-vertical\" id=\"searchForm1\" method=\"get\">"
## [93] "\t\t\t<div class=\"search-pane\">"
## [94] "\t\t\t\t<input type=\"text\" id =\"searchKey\" name =\"searchKey\" autocomplete=\"off\" class=\"input-block\"/> "
## [95] "\t\t\t\t<input name=\"id_dest\" type=\"hidden\" />"
## [96] "\t\t\t\t<input name=\"search_type\" type=\"hidden\" />"
## [97] "\t\t\t\t<input name=\"destEnFullName\" type=\"hidden\" />"
## [98] "\t\t\t\t<button class=\"btn btn-search btn-search-mini\" name =\"searchBtn1\"> "
## [99] "\t\t\t\t\t<i class=\"icon-search\"></i>"
## [100] "\t\t\t\t</button>"
## [101] "\t\t\t</div>"
## [102] " <div class=\"panel-error panel-mini\" style=\"display:none\">"
## [103] " <div class=\"panel-body\">"
## [104] "\t\t\t\t\t<p></p>"
## [105] " </div>"
## [106] " </div>"
## [107] "\t\t\t<div id=\"suggest\" class=\"featureSuggest\"></div>"
## [108] "\t\t</form>"
## [109] "\t\t<div class=\"expand-fluid\">"
## [110] "\t<div class=\"expand-nav center\">"
## [111] "\t\t<span class=\"caret\"></span>"
## [112] "\t</div>"
## [113] "\t<div class=\"expand-content\">"
## [114] "\t\t<form data-role=\"datepick\" class=\"form-vertical\" method=\"get\" name=\"searchForm2\">"
## [115] "\t\t\t<div class=\"form-row hide\" name=\"divDistance\">"
## [116] "\t\t\t\t<label class=\"label\"> "
## [117] "\t\t\t\t\tDistance:</label> "
## [118] "\t\t\t\t<select name=\"distance\" disabled=\"disabled\">"
## [119] "\t\t\t\t\t<option value=\"2000\">2km</option>"
## [120] "\t\t\t\t\t<option value=\"5000\">5km</option>"
## [121] "\t\t\t\t\t<option value=\"10000\">10km</option>"
## [122] "\t\t\t\t\t<option value=\"15000\">15km</option>"
## [123] "\t\t\t\t\t<option value=\"20000\">20km</option>"
## [124] "\t\t\t\t\t<option value=\"25000\">25km</option>"
## [125] "\t\t\t\t\t<option value=\"30000\">30km</option>"
## [126] "\t\t\t\t\t<option value=\"40000\">40km</option>"
## [127] "\t\t\t\t\t<option value=\"50000\">50km</option>"
## [128] "\t\t\t\t\t<option value=\"100000\">100km</option>"
## [129] "\t\t\t\t</select>"
## [130] "\t\t\t</div>"
## [131] "\t\t\t<div class=\"form-row\">"
## [132] "\t\t\t\t<label class=\"label\">"
## [133] "\t\t\t\t\tCheck in:</label>"
## [134] "\t\t\t\t<div data-role=\"datepickCheckin\" class=\"pick-date\" >"
## [135] "\t\t\t\t\t<input name=\"checkin_date\" type=\"text\" value=\"\" data-date-format=\"mm/dd/yyyy\" readonly=\"readonly\" /> "
## [136] "\t\t\t\t\t<span class=\"btn btn-date\">"
## [137] "\t\t\t\t\t\t<i class=\"icon-calendar\"></i>"
## [138] "\t\t\t\t\t</span>"
## [139] "\t\t\t\t</div>"
## [140] "\t <div class=\"panel-error panel-mini\" style=\"display:none\">"
## [141] "\t <div class=\"panel-body\">"
## [142] "\t\t\t\t\t\t<p></p>"
## [143] "\t </div>"
## [144] "\t </div>"
## [145] "\t\t\t</div>"
## [146] "\t\t\t<div class=\"form-row\">"
## [147] "\t\t\t\t<label class=\"label\">Check out:</label>"
## [148] "\t\t\t\t<div data-role=\"datepickCheckout\" class=\"pick-date\">"
## [149] "\t\t\t\t\t<input name=\"checkout_date\" type=\"text\" value=\"\" data-date-format=\"mm/dd/yyyy\" readonly=\"readonly\" /> "
## [150] "\t\t\t\t\t<span class=\"btn btn-date\"><i class=\"icon-calendar\"></i></span>"
## [151] "\t\t\t\t</div>"
## [152] "\t <div class=\"panel-error panel-mini\" style=\"display:none\">"
## [153] "\t <div class=\"panel-body\">"
## [154] "\t\t\t\t\t\t<p></p>"
## [155] "\t </div>"
## [156] "\t </div>"
## [157] "\t\t\t</div>"
## [158] "\t\t\t<div class=\"form-row\" name=\"divDateless\">"
## [159] "\t\t\t\t<label class=\"label-check\" > "
## [160] "\t\t\t\t<input value=\"1\" type=\"checkbox\" data-role=\"resetDate\"/> "
## [161] "\t\t\t\tI don't have specific dates.</label>"
## [162] "\t\t\t</div>"
## [163] "\t\t\t<div class=\"search-options\">"
## [164] "\t\t\t\t<div class=\"search-option\">"
## [165] "\t\t\t\t\t<label class=\"label\">"
## [166] "\t\t\t\t\tRoom:</label> "
## [167] "\t\t\t\t\t<select name=\"rooms\" class=\"input-mini\">"
## [168] "\t\t\t\t\t\t<option selected=\"selected\" value=\"1\">1</option>"
## [169] "\t\t\t\t\t\t<option value=\"2\">2</option>"
## [170] "\t\t\t\t\t\t<option value=\"3\">3</option>"
## [171] "\t\t\t\t\t\t<option value=\"4\">4</option>"
## [172] "\t\t\t\t\t\t<option value=\"5\">5</option>"
## [173] "\t\t\t\t\t\t<option value=\"6\">6</option>"
## [174] "\t\t\t\t\t\t<option value=\"7\">7</option>"
## [175] "\t\t\t\t\t\t<option value=\"8\">8</option>"
## [176] "\t\t\t\t\t\t<option value=\"9\">9</option>"
## [177] "\t\t\t\t\t\t<option value=\"10\">10</option>"
## [178] "\t\t\t\t\t</select>"
## [179] "\t\t\t\t</div>"
## [180] "\t\t\t\t<div class=\"search-option\">"
## [181] "\t\t\t\t\t<label class=\"label\">"
## [182] "\t\t\t\t\tAdults:</label> "
## [183] "\t\t\t\t\t<select name=\"adults\" class=\"input-mini\">"
## [184] "\t\t\t\t\t\t<option value=\"1\">1</option>"
## [185] "\t\t\t\t\t\t<option value=\"2\" selected=\"selected\">2</option>"
## [186] "\t\t\t\t\t\t<option value=\"3\">3</option>"
## [187] "\t\t\t\t\t\t<option value=\"4\">4</option>"
## [188] "\t\t\t\t\t\t<option value=\"5\">5</option>"
## [189] "\t\t\t\t\t\t<option value=\"6\">6</option>"
## [190] "\t\t\t\t\t\t<option value=\"7\">7</option>"
## [191] "\t\t\t\t\t\t<option value=\"8\">8</option>"
## [192] "\t\t\t\t\t\t<option value=\"9\">9</option>"
## [193] "\t\t\t\t\t\t<option value=\"10\">10</option>"
## [194] "\t\t\t\t\t</select>"
## [195] "\t\t\t\t</div>"
## [196] "\t\t\t\t<div class=\"search-option\">"
## [197] "\t\t\t\t\t<label class=\"label\">Children:</label> "
## [198] "\t\t\t\t\t<select name=\"children\" data-role=\"select-children\" class=\"input-mini\">"
## [199] "\t\t\t\t\t\t<option selected=\"selected\">0</option>"
## [200] "\t\t\t\t\t\t<option>1</option>"
## [201] "\t\t\t\t\t\t<option>2</option>"
## [202] "\t\t\t\t\t\t<option>3</option>"
## [203] "\t\t\t\t\t\t<option>4</option>"
## [204] "\t\t\t\t\t\t<option>5</option>"
## [205] "\t\t\t\t\t\t<option>6</option>"
## [206] "\t\t\t\t\t\t<option>7</option>"
## [207] "\t\t\t\t\t\t<option>8</option>"
## [208] "\t\t\t\t\t\t<option>9</option>"
## [209] "\t\t\t\t\t\t<option>10</option>"
## [210] "\t\t\t\t\t</select>"
## [211] "\t\t\t\t</div>"
## [212] "\t\t\t\t<div data-role=\"select-children-options\" class=\"hide\">"
## [213] "\t\t\t\t\t<div class=\"bubble\">"
## [214] "\t\t\t\t\t\t<label class=\"label\">Ages of children:</label>"
## [215] "\t\t\t\t\t\t<ol class=\"list-ordered\">"
## [216] "\t\t\t\t\t\t\t<li data-role=\"children-options\" class=\"search-options-2cols\">"
## [217] "\t\t\t\t\t\t\t\t<div class=\"search-option-col3\">"
## [218] "\t\t\t\t\t\t\t\t\t<select data-role=\"select-children-age\" class=\"input-mini\">"
## [219] "\t\t\t\t\t\t\t\t\t\t<option selected=\"selected\">0</option>"
## [220] "\t\t\t\t\t\t\t\t\t\t<option>1</option>"
## [221] "\t\t\t\t\t\t\t\t\t\t<option>2</option>"
## [222] "\t\t\t\t\t\t\t\t\t\t<option>3</option>"
## [223] "\t\t\t\t\t\t\t\t\t\t<option>4</option>"
## [224] "\t\t\t\t\t\t\t\t\t\t<option>5</option>"
## [225] "\t\t\t\t\t\t\t\t\t\t<option>6</option>"
## [226] "\t\t\t\t\t\t\t\t\t\t<option>7</option>"
## [227] "\t\t\t\t\t\t\t\t\t\t<option>8</option>"
## [228] "\t\t\t\t\t\t\t\t\t\t<option>9</option>"
## [229] "\t\t\t\t\t\t\t\t\t\t<option>10</option>"
## [230] "\t\t\t\t\t\t\t\t\t\t<option>11</option>"
## [231] "\t\t\t\t\t\t\t\t\t</select>"
## [232] "\t\t\t\t\t\t\t\t</div>"
## [233] "\t\t\t\t\t\t\t\t<div class=\"search-option-col9\">"
## [234] "\t\t\t\t\t\t\t\t\t<select data-role=\"select-children-beds\" class=\"input-medium\">"
## [235] "\t\t\t\t\t\t\t\t\t\t<option value=\"1\" selected=\"selected\">"
## [236] "\t\t\t\t\t\t\t\t\t\t\twith bed</option>"
## [237] "\t\t\t\t\t\t\t\t\t\t<option value=\"0\">"
## [238] "\t\t\t\t\t\t\t\t\t\t\twithout bed</option>"
## [239] "\t\t\t\t\t\t\t\t\t</select>"
## [240] "\t\t\t\t\t\t\t\t</div>"
## [241] "\t\t\t\t\t\t\t</li>"
## [242] "\t\t\t\t\t\t</ol>"
## [243] "\t\t\t\t\t</div>"
## [244] "\t\t\t\t</div>"
## [245] "\t\t\t</div>"
## [246] "\t\t\t<div class=\"center\">"
## [247] "\t\t\t\t<button name=\"search\" class=\"btn btn-search btn-large btn-block\">"
## [248] "\t\t\t\t\t<i class=\"icon-search\"></i>"
## [249] "\t\t\t\t\tSearch</button>"
## [250] "\t\t\t</div>"
## [251] "\t\t\t <input name=\"searchKey\" type=\"hidden\" />"
## [252] "\t\t\t <input name=\"id_dest\" type=\"hidden\" />"
## [253] "\t\t\t <input name=\"search_type\" type=\"hidden\" />"
## [254] "\t\t\t <input name=\"destEnFullName\" type=\"hidden\" />"
## [255] "\t\t\t <!-- <input name=\"childBeds\" type=\"hidden\" />"
## [256] "\t\t\t <input name=\"childAges\" type=\"hidden\" /> -->"
## [257] "\t\t\t <input name=\"dateless\" type=\"hidden\" value=\"0\"/>"
## [258] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [259] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [260] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [261] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [262] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [263] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [264] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [265] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [266] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [267] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [268] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [269] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [270] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [271] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [272] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [273] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [274] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [275] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [276] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [277] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [278] "\t\t\t <input type=\"hidden\" name=\"id_plan\" />"
## [279] "\t\t\t <input type=\"hidden\" name=\"id_room\" />"
## [280] "\t\t</form>"
## [281] "\t</div>"
## [282] "</div></div>"
## [283] "</div>"
## [284] "<div class=\"container featureFilter\">"
## [285] "\t<div class=\"heading\">"
## [286] "\t\t<h2 class=\"title\">Filter</h2>"
## [287] "\t</div>"
## [288] "\t<div class=\"content\">"
## [289] "\t\t<form id=\"filterForm\" class=\"form-vertical\" action=\"/ghotel/info/Japan-Hokkaido-Noboribetsu-Noboribetsu_Onsen_Noboribetsu_Grand_Hotel/39175/;jsessionid=97B0F9ABB51F5DECF4325325BE5AFA7C\" method=\"post\"><!-- "
## [290] "\t<div class=\"section-divided btns\">"
## [291] "\t\t<button class=\"btn btn-action btn-small pull-right\" type=\"submit\">Update</button>"
## [292] "\t\t<button class=\"btn btn-small pull-left\" type=\"reset\">Clear</button>"
## [293] "\t</div>"
## [294] "\t -->"
## [295] "\t<div class=\"section-divided\">"
## [296] "\t\t<label class=\"label\">Price</label>"
## [297] "\t\t<div class=\"lead\">Show me hotels around this price:</div>"
## [298] "\t\t<div>JPY</div>"
## [299] "\t\t<input id=\"price\" name=\"price\" class=\"input-block\" type=\"text\" value=\"\" maxlength=\"12\"/></div>"
## [300] "\t<div class=\"section-divided\">"
## [301] "\t\t<label class=\"label\">"
## [302] "\t\t\tRoom Facilities</label>"
## [303] "\t\t<label class=\"label-check\">"
## [304] "\t\t\t<input id=\"filter1\" name=\"filter\" type=\"checkbox\" value=\"r_net\"/><input type=\"hidden\" name=\"_filter\" value=\"on\"/>Internet available</label>"
## [305] "\t\t<label class=\"label-check\">"
## [306] "\t\t\t<input id=\"filter2\" name=\"filter\" type=\"checkbox\" value=\"r_nonsmoking\"/><input type=\"hidden\" name=\"_filter\" value=\"on\"/>Non-smoking</label>"
## [307] "\t\t<label class=\"label-check\">"
## [308] "\t\t\t<input id=\"filter3\" name=\"filter\" type=\"checkbox\" value=\"r_smoking\"/><input type=\"hidden\" name=\"_filter\" value=\"on\"/>Smoking</label>"
## [309] "\t\t<label class=\"label-check\">"
## [310] "\t\t\t<input id=\"filter4\" name=\"filter\" type=\"checkbox\" value=\"r_toilet\"/><input type=\"hidden\" name=\"_filter\" value=\"on\"/>Toilet with automatic washing function</label>"
## [311] "\t\t<label class=\"label-check\">"
## [312] "\t\t\t<input id=\"filter5\" name=\"filter\" type=\"checkbox\" value=\"r_breakfast\"/><input type=\"hidden\" name=\"_filter\" value=\"on\"/>Breakfast included</label>"
## [313] "\t\t<label class=\"label-check\">"
## [314] "\t\t\t<input id=\"filter6\" name=\"filter\" type=\"checkbox\" value=\"r_dinner\"/><input type=\"hidden\" name=\"_filter\" value=\"on\"/>Dinner included</label>"
## [315] "\t\t</div>"
## [316] "\t<div class=\"section-divided btns\">"
## [317] "\t\t<button class=\"btn btn-action btn-small pull-right\" type=\"submit\">Update</button>"
## [318] "\t\t<button class=\"btn btn-small pull-left\" type=\"reset\">Clear</button>"
## [319] "\t</div>"
## [320] "\t<input id=\"sort\" name=\"sort\" type=\"hidden\" value=\"3\"/><input id=\"doFilter\" name=\"doFilter\" value=\"1\" type=\"hidden\" value=\"0\"/></form></div>"
## [321] "</div></div>"
## [322] "\t\t\t<div class=\"area\">"
## [323] "\t\t\t\t<div class=\"container featureHotelDetail\">"
## [324] "\t\t\t\t\t<div class=\"heading\">"
## [325] "\t<h1 class=\"title\">Noboribetsu Onsen Noboribetsu Grand Hotel</h1>"
## [326] "\t<div class=\"featureHotelInfo\">"
## [327] "\t\t<span data-role=\"expand\" data-target=\"#map\" class=\"btn btn-small pull-right\">"
## [328] "\t\t\tMap</span>"
## [329] "\t\t<div title=\"Hotel Rank 4.0 stars\" class=\"rank\">"
## [330] "\t\t\t<span class=\"icon-star\"></span><span class=\"icon-star\"></span><span class=\"icon-star\"></span><span class=\"icon-star\"></span><span class=\"icon-star-sub\"></span></div>"
## [331] "\t\t<div class=\"review\">"
## [332] "\t\t\tGuest Review Score "
## [333] "\t\t\t<b>"
## [334] "\t\t\t4.12</b>"
## [335] "\t\t</div>"
## [336] "\t\t<div class=\"info text-sub\">"
## [337] "\t\t\tJapan-Hokkaido-Noboribetsu</div>"
## [338] "\t</div>"
## [339] "</div>"
## [340] "<div class=\"content\">"
## [341] "\t\t\t\t\t\t<div id=\"map\" class=\"container00 featureMap expand-content hide\" style=\"height: 370px;\"></div>"
## [342] "<span id=\"markerDetail\" style=\"display: none\" data-target=\"#hotelInfo\" data-role=\"modal\"></span><div class=\"section\">"
## [343] "\t<div class=\"carousel\">"
## [344] "\t\t<img src=\"http://img.travel.rakuten.co.jp/share/HOTEL/39175/39175.jpg\" />"
## [345] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/HOTEL/39175/39175_ta.jpg\" />"
## [346] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/dkbjTY.jpeg\" />"
## [347] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/8osRh7.jpeg\" />"
## [348] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/o7OYHx.jpeg\" />"
## [349] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/L4yXqk.jpeg\" />"
## [350] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/4B8sX2.jpeg\" />"
## [351] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/SpA5kb.jpeg\" />"
## [352] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/VIrblJ.jpeg\" />"
## [353] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/XRaGdV.jpeg\" />"
## [354] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/Q2AVVy.jpeg\" />"
## [355] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/TV7emT.jpeg\" />"
## [356] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/rXwwAk.jpeg\" />"
## [357] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/V5RUjR.jpeg\" />"
## [358] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/iRW5lR.jpeg\" />"
## [359] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/2nI3Nd.jpeg\" />"
## [360] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/e9WwUp.jpeg\" />"
## [361] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/9nmZpy.jpeg\" />"
## [362] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/O1oHn9.jpeg\" />"
## [363] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/Mg0gvo.jpeg\" />"
## [364] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/2dDqcB.jpeg\" />"
## [365] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/wyp6EZ.jpeg\" />"
## [366] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/2tVcwH.jpeg\" />"
## [367] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/HQX0VM.jpeg\" />"
## [368] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/8gui6u.jpeg\" />"
## [369] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/A5JuuO.jpeg\" />"
## [370] "\t\t<img src=\"http://img.travel.rakuten.co.jp//share/image_up/39175/LARGE/Yynmek.jpeg\" />"
## [371] "\t\t</div>"
## [372] "</div>"
## [373] "<div class=\"section\">"
## [374] "\t<h2 class=\"title01\">About</h2>"
## [375] "\t<div class=\"text\">"
## [376] "\t\t<p class=\"lead\">NOBORIBETSU GRAND HOTEL IS MOST PRESTIGIOUS HOTEL HAVING A NUMBER OF GUESTS BOTH FROM JAPAN AND OVERSEAS, AND IS CALLED GUEST HOUSE IN NOBORIBETSU ONSEN.</p>"
## [377] "\t\t<div class=\"expand-oneway\">"
## [378] "\t\t\t<a href=\"#\" class=\"expand-nav\">Show All</a>"
## [379] "\t\t\t<div class=\"expand-content hide\">"
## [380] "\t\t\t\t<dl class=\"dl-fluid\">"
## [381] "\t\t\t\t\t<dt>Check-in time:</dt>"
## [382] "\t\t\t\t\t<dd>15:00</dd>"
## [383] "\t\t\t\t</dl>"
## [384] "\t\t\t\t<dl class=\"dl-fluid\">"
## [385] "\t\t\t\t\t<dt>Latest check-in time:</dt>"
## [386] "\t\t\t\t\t<dd>"
## [387] "\t\t\t\t\t\t21:00</dd>"
## [388] "\t\t\t\t</dl>"
## [389] "\t\t\t\t<dl class=\"dl-fluid\">"
## [390] "\t\t\t\t\t<dt>Check-out time:</dt>"
## [391] "\t\t\t\t\t<dd>"
## [392] "\t\t\t\t\t\t10:00</dd>"
## [393] "\t\t\t\t</dl>"
## [394] "\t\t\t\t<dl class=\"dl-fluid\">"
## [395] "\t\t\t\t\t<dt>Nearest Station:</dt>"
## [396] "\t\t\t\t\t<dd>"
## [397] "\t\t\t\t\t\t<b>[Nearest Station]</b><br><b>By Taxi:</b> Approx. 13 min. by taxi from JR Noboribetsu Sta.<br><b>By Bus:</b> Approx. 15 min. ride from JR Noboritetsu Sta. to Noboribetsu Onsen Bus Terminal. (JPY 330 one way/ person)<br><br><b>[From Sapporo Station]</b><br>Approx. 85 min. by JR Limited Express to Noboribetsu directly.<br></dd>"
## [398] "\t\t\t\t</dl>"
## [399] "\t\t\t\t<dl class=\"dl-fluid\">"
## [400] "\t\t\t\t\t<dt>Address:</dt>"
## [401] "\t\t\t\t\t<dd>154 Noboribetsuonsen, Noboribetsu City, Hokkaido 059-0592, Japan</dd>"
## [402] "\t\t\t\t</dl>"
## [403] "\t\t\t\t<dl class=\"dl-fluid\">"
## [404] "\t\t\t\t\t<dt>Contact us:</dt>"
## [405] "\t\t\t\t\t<dd>"
## [406] "\t\t\t\t\t\tTEL : 0143-84-2101<br />"
## [407] "\t\t\t\t\t\tFAX : 0143-84-2543</dd>"
## [408] "\t\t\t\t</dl>"
## [409] "\t\t\t\t<dl class=\"dl-fluid\">"
## [410] "\t\t\t\t\t<dt>Parking:</dt>"
## [411] "\t\t\t\t\t<dd>"
## [412] "\t\t\t\t\t\t200 CARS / FREE</dd>"
## [413] "\t\t\t\t</dl>"
## [414] "\t\t\t</div>"
## [415] "\t\t</div>"
## [416] "\t</div>"
## [417] "</div><div class=\"section\">"
## [418] "\t<h2 class=\"title01\">Room</h2>"
## [419] "</div>"
## [420] "<div class=\"featureSearchUtility featureSearchUtilityHotel\">"
## [421] "\t<div class=\"feature-head row\">"
## [422] "\t\t<div class=\"col6\">"
## [423] "\t\t\t<h3 class=\"title\">"
## [424] "\t\t\t "
## [425] "\t\t\t\tFor "
## [426] "\t\t\t\t1 Room</h3>"
## [427] "\t\t\t<!-- "
## [428] "\t\t\t"
## [429] "\t\t\t -->"
## [430] "\t\t</div>"
## [431] "\t\t<div class=\"col6\">"
## [432] "\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-search btn-large btn-block\">"
## [433] "\t\t\t\t<i class=\"icon-search\"></i>"
## [434] "\t\t\t\tEnter dates</span>"
## [435] "\t\t</div>"
## [436] "\t</div>"
## [437] "\t<div class=\"feature-body\">"
## [438] "\t\t<dl class=\"dl-inline inline-block\">"
## [439] "\t\t\t<dt>Sort :</dt>"
## [440] "\t\t\t<dd>Price - low to high</dd>"
## [441] "\t\t</dl>"
## [442] "\t\t</div>"
## [443] "\t<div class=\"feature-foot clearfix\">"
## [444] "\t\t<div class=\"pull-right featureFilter\">"
## [445] "\t<div data-role=\"dropdown\" data-position=\"right,bottom\" class=\"nav-tile\">"
## [446] "\t\tFilter</div>"
## [447] "\t<div data-role=\"dropdown-content\" class=\"nav-tile-content content-narrow hide\">"
## [448] "\t\t<form id=\"filterForm\" class=\"form-vertical\" action=\"/ghotel/info/Japan-Hokkaido-Noboribetsu-Noboribetsu_Onsen_Noboribetsu_Grand_Hotel/39175/;jsessionid=97B0F9ABB51F5DECF4325325BE5AFA7C\" method=\"post\"><!-- "
## [449] "\t<div class=\"section-divided btns\">"
## [450] "\t\t<button class=\"btn btn-action btn-small pull-right\" type=\"submit\">Update</button>"
## [451] "\t\t<button class=\"btn btn-small pull-left\" type=\"reset\">Clear</button>"
## [452] "\t</div>"
## [453] "\t -->"
## [454] "\t<div class=\"section-divided\">"
## [455] "\t\t<label class=\"label\">Price</label>"
## [456] "\t\t<div class=\"lead\">Show me hotels around this price:</div>"
## [457] "\t\t<div>JPY</div>"
## [458] "\t\t<input id=\"price\" name=\"price\" class=\"input-block\" type=\"text\" value=\"\" maxlength=\"12\"/></div>"
## [459] "\t<div class=\"section-divided\">"
## [460] "\t\t<label class=\"label\">"
## [461] "\t\t\tRoom Facilities</label>"
## [462] "\t\t<label class=\"label-check\">"
## [463] "\t\t\t<input id=\"filter7\" name=\"filter\" type=\"checkbox\" value=\"r_net\"/><input type=\"hidden\" name=\"_filter\" value=\"on\"/>Internet available</label>"
## [464] "\t\t<label class=\"label-check\">"
## [465] "\t\t\t<input id=\"filter8\" name=\"filter\" type=\"checkbox\" value=\"r_nonsmoking\"/><input type=\"hidden\" name=\"_filter\" value=\"on\"/>Non-smoking</label>"
## [466] "\t\t<label class=\"label-check\">"
## [467] "\t\t\t<input id=\"filter9\" name=\"filter\" type=\"checkbox\" value=\"r_smoking\"/><input type=\"hidden\" name=\"_filter\" value=\"on\"/>Smoking</label>"
## [468] "\t\t<label class=\"label-check\">"
## [469] "\t\t\t<input id=\"filter10\" name=\"filter\" type=\"checkbox\" value=\"r_toilet\"/><input type=\"hidden\" name=\"_filter\" value=\"on\"/>Toilet with automatic washing function</label>"
## [470] "\t\t<label class=\"label-check\">"
## [471] "\t\t\t<input id=\"filter11\" name=\"filter\" type=\"checkbox\" value=\"r_breakfast\"/><input type=\"hidden\" name=\"_filter\" value=\"on\"/>Breakfast included</label>"
## [472] "\t\t<label class=\"label-check\">"
## [473] "\t\t\t<input id=\"filter12\" name=\"filter\" type=\"checkbox\" value=\"r_dinner\"/><input type=\"hidden\" name=\"_filter\" value=\"on\"/>Dinner included</label>"
## [474] "\t\t</div>"
## [475] "\t<div class=\"section-divided btns\">"
## [476] "\t\t<button class=\"btn btn-action btn-small pull-right\" type=\"submit\">Update</button>"
## [477] "\t\t<button class=\"btn btn-small pull-left\" type=\"reset\">Clear</button>"
## [478] "\t</div>"
## [479] "\t<input id=\"sort\" name=\"sort\" type=\"hidden\" value=\"3\"/><input id=\"doFilter\" name=\"doFilter\" value=\"1\" type=\"hidden\" value=\"0\"/></form></div>"
## [480] "</div><div class=\"pull-right featureSort\">"
## [481] "\t<div data-role=\"dropdown\" data-position=\"right,bottom\" class=\"nav-tile\">"
## [482] "\t\tSort</div>"
## [483] "\t<div data-role=\"dropdown-content\" class=\"nav-tile-content hide\">"
## [484] "\t\t<ul class=\"list-block\">"
## [485] "\t\t\t<li><a href=\"javascript:void(0);\" value=\"3\">Price - low to high</a></li>"
## [486] "\t\t\t<li><a href=\"javascript:void(0);\" value=\"4\">Price - high to low</a></li>"
## [487] "\t\t</ul>"
## [488] "\t</div>"
## [489] "</div></div>"
## [490] "</div></div>"
## [491] "\t\t\t\t</div>"
## [492] "\t\t\t\t<div class=\"container featureRoomDetail hide\" id=\"roomNodeTemplate\">"
## [493] "\t<div class=\"content featureDetailInfo\">"
## [494] "\t\t<div class=\"media container-child\">"
## [495] "\t\t\t<div name=\"roomImgSmall\" data-role=\"modal\" data-target=\"#roomSample_roomNodeTemplate\" class=\"media-object modal-trigger\">"
## [496] "\t\t\t\t<img src=\"\" width=\"100\" class=\"image-main\"/>"
## [497] "\t\t\t</div>"
## [498] "\t\t\t<div name=\"roomImgLarge\" id=\"roomSample_roomNodeTemplate\" class=\"modal hide\">"
## [499] "\t\t\t\t<div class=\"container modal-content\">"
## [500] "\t\t\t\t\t<span data-role=\"data-dismiss\" class=\"icon-close\"></span>"
## [501] "\t\t\t\t\t<div class=\"content\">"
## [502] "\t\t\t\t\t\t<div class=\"featureImage center\">"
## [503] "\t\t\t\t\t\t\t<img src=\"\" class=\"image\" />"
## [504] "\t\t\t\t\t\t</div>"
## [505] "\t\t\t\t\t</div>"
## [506] "\t\t\t\t</div>"
## [507] "\t\t\t</div>"
## [508] "\t\t\t<div name=\"roomName\" class=\"media-head\">"
## [509] "\t\t\t\t<h3>{room.roomName}</h3>"
## [510] "\t\t\t</div>"
## [511] "\t\t\t<div name=\"roomDesc\" class=\"media-body\">"
## [512] "\t\t\t\t<div class=\"text-sub\">{room.description}</div>"
## [513] "\t\t\t</div>"
## [514] "\t\t</div>"
## [515] "\t\t<ul name=\"planList\" class=\"list-box list-box-fluid\">"
## [516] "\t\t\t<!-- --><li id=\"roomNodeTemplate_planNodeTemplate\" class=\"list-item\">"
## [517] "\t\t\t\t<div class=\"box\">"
## [518] "\t\t\t\t\t<div class=\"box-content\">"
## [519] "\t\t\t\t\t\t<div name=\"planShort\" class=\"media\">"
## [520] "\t\t\t\t\t\t\t<!-- <div name=\"planPhoto\" class=\"media-object\"></div> -->"
## [521] "\t\t\t\t\t\t\t<div name=\"planName\" class=\"media-head\">{plan.planName}</div>"
## [522] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [523] "\t\t\t\t\t\t\t\t<div name=\"planMeal\" class=\"text-sub\">"
## [524] "\t\t\t\t\t\t\t\t\tBreakfast: {MealB} /"
## [525] "\t\t\t\t\t\t\t\t\tDinner: {MealD}"
## [526] "\t\t\t\t\t\t\t\t</div>"
## [527] "\t\t\t\t\t\t\t\t<div name=\"price\" class=\"right\">"
## [528] "\t\t\t\t\t\t\t\t\t\tJPY "
## [529] "\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">{plan.minPrice}</b> 嚚\x9e {plan.maxPrice}"
## [530] "\t\t\t\t\t\t\t\t\t\t<div name=\"priceType\" class=\"text-sub\"></div>"
## [531] "\t\t\t\t\t\t\t\t\t</div>"
## [532] "\t\t\t\t\t\t\t\t\t<div name=\"enterDate\" class=\"pull-right\">"
## [533] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [534] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [535] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [536] "\t\t\t\t\t\t\t\t\t</div>"
## [537] "\t\t\t\t\t\t\t\t</div>"
## [538] "\t\t\t\t\t\t</div>"
## [539] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [540] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [541] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [542] "\t\t\t\t\t\t\t\t<div name=\"planDetail\" class=\"expand-content hide\">"
## [543] "\t\t\t\t\t\t\t\t\t<div name=\"photoList\" class=\"carousel-mini container-child\"></div>"
## [544] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [545] "\t\t\t\t\t\t\t\t\t\t<text name=\"planDesc\">"
## [546] "\t\t\t\t\t\t\t\t\t\t\t{plan.description}<br/>"
## [547] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [548] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [549] "\t\t\t\t\t\t\t\t\t\t\t{room.maxCapacity}<br/>"
## [550] "\t\t\t\t\t\t\t\t\t\t</text>"
## [551] "\t\t\t\t\t\t\t\t\t\t<div name=\"price\" class=\"info right\">"
## [552] "\t\t\t\t\t\t\t\t\t\t\t\tJPY "
## [553] "\t\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">{plan.minPrice}</b> 嚚\x9e {plan.maxPrice}"
## [554] "\t\t\t\t\t\t\t\t\t\t\t\t<div name=\"priceType\" class=\"text-sub\"></div>"
## [555] "\t\t\t\t\t\t\t\t\t\t\t</div>"
## [556] "\t\t\t\t\t\t\t\t\t\t\t<div name=\"enterDate\" class=\"right\">"
## [557] "\t\t\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [558] "\t\t\t\t\t\t\t\t\t\t\t\t <i class=\"icon-search-small\"></i>"
## [559] "\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [560] "\t\t\t\t\t\t\t\t\t\t\t</div>"
## [561] "\t\t\t\t\t\t\t\t\t\t<div name=\"paymentMethod\" class=\"info text-sub\">"
## [562] "\t\t\t\t\t\t\t\t\t\t\t{paymentMethod}, VAT (8%) included, service charge included</div>"
## [563] "\t\t\t\t\t\t\t\t\t</div>"
## [564] "\t\t\t\t\t\t\t\t</div>"
## [565] "\t\t\t\t\t\t\t</div>"
## [566] "\t\t\t\t\t\t</div>"
## [567] "\t\t\t\t\t</div>"
## [568] "\t\t\t\t</div>"
## [569] "\t\t\t</li>"
## [570] "\t\t</ul>"
## [571] "\t\t<div class=\"morePlanBtn center\">"
## [572] "\t\t\t<b><a class=\"\">More Plans<span class=\"caret-bottom-small\"></span></a></b>"
## [573] "\t\t</div>"
## [574] "\t</div>"
## [575] "</div>"
## [576] "<div class=\"container featureRoomDetail\" id=\"db\">"
## [577] "\t<div class=\"content featureDetailInfo\">"
## [578] "\t\t<div class=\"media container-child\">"
## [579] "\t\t\t<div data-role=\"modal\" data-target=\"#roomSample_db\" class=\"media-object modal-trigger\">"
## [580] "\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/3p8dNv.jpeg\" width=\"100\" class=\"image-main\"/>"
## [581] "\t\t\t\t\t</div>"
## [582] "\t\t\t\t<div class=\"media-head\">"
## [583] "\t\t\t\t<h3>STANDARD TWIN ROOM</h3>"
## [584] "\t\t\t</div>"
## [585] "\t\t\t<div class=\"media-body\">"
## [586] "\t\t\t\t<div class=\"text-sub\">with Bathroom and Toilet</div>"
## [587] "\t\t\t</div>"
## [588] "\t\t</div>"
## [589] "\t\t<ul class=\"list-box list-box-fluid\">"
## [590] "\t\t\t<!-- --><li class=\"list-item odd\" id=\"db_3170927\">"
## [591] "\t\t\t\t<div class=\"box\">"
## [592] "\t\t\t\t\t<div class=\"box-content\">"
## [593] "\t\t\t\t\t\t<div class=\"media\">"
## [594] "\t\t\t\t\t\t\t<!-- "
## [595] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [596] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\" width=\"80\"/>"
## [597] "\t\t\t\t\t\t\t\t</div>"
## [598] "\t\t\t\t\t\t\t -->"
## [599] "\t\t\t\t\t\t\t<div class=\"media-head\">Book Earlier! Save More!Breakfast and Dinner Plan</div>"
## [600] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [601] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [602] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [603] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [604] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [605] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [606] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,440</b>"
## [607] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,760<div class=\"text-sub\">per night per person</div>"
## [608] "\t\t\t\t\t\t\t\t\t\t</div>"
## [609] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [610] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"db_3170927\"> "
## [611] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [612] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [613] "\t\t\t\t\t\t\t\t\t</div>"
## [614] "\t\t\t\t\t\t\t\t</div>"
## [615] "\t\t\t\t\t\t</div>"
## [616] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [617] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [618] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [619] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [620] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [621] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\"/>"
## [622] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [623] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [624] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [625] "\t\t\t\t\t\t\t\t\t\t</div>"
## [626] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [627] "\t\t\t\t\t\t\t\t\t\t<text>"
## [628] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/>- Book 60+ days early and save!<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [629] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [630] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [631] "\t\t\t\t\t\t\t\t\t\t\t2<br/>"
## [632] "\t\t\t\t\t\t\t\t\t\t</text>"
## [633] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [634] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,440</b>"
## [635] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,760<div class=\"text-sub\">per night per person</div>"
## [636] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [637] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [638] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"db_3170927\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [639] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [640] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [641] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [642] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [643] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [644] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [645] "\t\t\t\t\t\t\t\t\t</div>"
## [646] "\t\t\t\t\t\t\t\t</div>"
## [647] "\t\t\t\t\t\t\t</div>"
## [648] "\t\t\t\t\t\t</div>"
## [649] "\t\t\t\t\t</div>"
## [650] "\t\t\t\t</div>"
## [651] "\t\t\t</li><!-- --><li class=\"list-item even\" id=\"db_3211918\">"
## [652] "\t\t\t\t<div class=\"box\">"
## [653] "\t\t\t\t\t<div class=\"box-content\">"
## [654] "\t\t\t\t\t\t<div class=\"media\">"
## [655] "\t\t\t\t\t\t\t<!-- "
## [656] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [657] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\" width=\"80\"/>"
## [658] "\t\t\t\t\t\t\t\t</div>"
## [659] "\t\t\t\t\t\t\t -->"
## [660] "\t\t\t\t\t\t\t<div class=\"media-head\">Book Earlier! Save More!Breakfast and Dinner Plan</div>"
## [661] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [662] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [663] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [664] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [665] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [666] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [667] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,540</b>"
## [668] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,860<div class=\"text-sub\">per night per person</div>"
## [669] "\t\t\t\t\t\t\t\t\t\t</div>"
## [670] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [671] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"db_3211918\"> "
## [672] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [673] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [674] "\t\t\t\t\t\t\t\t\t</div>"
## [675] "\t\t\t\t\t\t\t\t</div>"
## [676] "\t\t\t\t\t\t</div>"
## [677] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [678] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [679] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [680] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [681] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [682] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\"/>"
## [683] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [684] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [685] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [686] "\t\t\t\t\t\t\t\t\t\t</div>"
## [687] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [688] "\t\t\t\t\t\t\t\t\t\t<text>"
## [689] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/>- Book 30+ days early and save!<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [690] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [691] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [692] "\t\t\t\t\t\t\t\t\t\t\t2<br/>"
## [693] "\t\t\t\t\t\t\t\t\t\t</text>"
## [694] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [695] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,540</b>"
## [696] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,860<div class=\"text-sub\">per night per person</div>"
## [697] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [698] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [699] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"db_3211918\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [700] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [701] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [702] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [703] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [704] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [705] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [706] "\t\t\t\t\t\t\t\t\t</div>"
## [707] "\t\t\t\t\t\t\t\t</div>"
## [708] "\t\t\t\t\t\t\t</div>"
## [709] "\t\t\t\t\t\t</div>"
## [710] "\t\t\t\t\t</div>"
## [711] "\t\t\t\t</div>"
## [712] "\t\t\t</li><!-- --><li class=\"list-item odd\" id=\"db_3166780\">"
## [713] "\t\t\t\t<div class=\"box\">"
## [714] "\t\t\t\t\t<div class=\"box-content\">"
## [715] "\t\t\t\t\t\t<div class=\"media\">"
## [716] "\t\t\t\t\t\t\t<!-- "
## [717] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [718] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/EzGZs6.jpeg\" width=\"80\"/>"
## [719] "\t\t\t\t\t\t\t\t</div>"
## [720] "\t\t\t\t\t\t\t -->"
## [721] "\t\t\t\t\t\t\t<div class=\"media-head\">Plan</div>"
## [722] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [723] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [724] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [725] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [726] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [727] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [728] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,640</b>"
## [729] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,960<div class=\"text-sub\">per night per person</div>"
## [730] "\t\t\t\t\t\t\t\t\t\t</div>"
## [731] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [732] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"db_3166780\"> "
## [733] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [734] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [735] "\t\t\t\t\t\t\t\t\t</div>"
## [736] "\t\t\t\t\t\t\t\t</div>"
## [737] "\t\t\t\t\t\t</div>"
## [738] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [739] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [740] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [741] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [742] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [743] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/EzGZs6.jpeg\"/>"
## [744] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [745] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [746] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [747] "\t\t\t\t\t\t\t\t\t\t</div>"
## [748] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [749] "\t\t\t\t\t\t\t\t\t\t<text>"
## [750] "\t\t\t\t\t\t\t\t\t\t\tPlan<br/>"
## [751] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [752] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [753] "\t\t\t\t\t\t\t\t\t\t\t2<br/>"
## [754] "\t\t\t\t\t\t\t\t\t\t</text>"
## [755] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [756] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,640</b>"
## [757] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,960<div class=\"text-sub\">per night per person</div>"
## [758] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [759] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [760] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"db_3166780\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [761] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [762] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [763] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [764] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [765] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [766] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [767] "\t\t\t\t\t\t\t\t\t</div>"
## [768] "\t\t\t\t\t\t\t\t</div>"
## [769] "\t\t\t\t\t\t\t</div>"
## [770] "\t\t\t\t\t\t</div>"
## [771] "\t\t\t\t\t</div>"
## [772] "\t\t\t\t</div>"
## [773] "\t\t\t</li><!-- --><li class=\"list-item even\" id=\"db_3230277\">"
## [774] "\t\t\t\t<div class=\"box\">"
## [775] "\t\t\t\t\t<div class=\"box-content\">"
## [776] "\t\t\t\t\t\t<div class=\"media\">"
## [777] "\t\t\t\t\t\t\t<!-- "
## [778] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [779] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/jmkIsW.jpeg\" width=\"80\"/>"
## [780] "\t\t\t\t\t\t\t\t</div>"
## [781] "\t\t\t\t\t\t\t -->"
## [782] "\t\t\t\t\t\t\t<div class=\"media-head\">Breakfast and Dinner Plan</div>"
## [783] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [784] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [785] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [786] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [787] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [788] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [789] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,864</b>"
## [790] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 11,864<div class=\"text-sub\">per night per person</div>"
## [791] "\t\t\t\t\t\t\t\t\t\t</div>"
## [792] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [793] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"db_3230277\"> "
## [794] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [795] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [796] "\t\t\t\t\t\t\t\t\t</div>"
## [797] "\t\t\t\t\t\t\t\t</div>"
## [798] "\t\t\t\t\t\t</div>"
## [799] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [800] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [801] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [802] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [803] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [804] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/jmkIsW.jpeg\"/>"
## [805] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/s7vSOP.jpeg\"/>"
## [806] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/7G08Wb.jpeg\"/>"
## [807] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/jshoUb.jpeg\"/>"
## [808] "\t\t\t\t\t\t\t\t\t\t</div>"
## [809] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [810] "\t\t\t\t\t\t\t\t\t\t<text>"
## [811] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet, Includes beer or soft drink with dinner)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [812] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [813] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [814] "\t\t\t\t\t\t\t\t\t\t\t2<br/>"
## [815] "\t\t\t\t\t\t\t\t\t\t</text>"
## [816] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [817] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,864</b>"
## [818] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 11,864<div class=\"text-sub\">per night per person</div>"
## [819] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [820] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [821] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"db_3230277\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [822] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [823] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [824] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [825] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [826] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [827] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [828] "\t\t\t\t\t\t\t\t\t</div>"
## [829] "\t\t\t\t\t\t\t\t</div>"
## [830] "\t\t\t\t\t\t\t</div>"
## [831] "\t\t\t\t\t\t</div>"
## [832] "\t\t\t\t\t</div>"
## [833] "\t\t\t\t</div>"
## [834] "\t\t\t</li></ul>"
## [835] "\t\t<div class=\"morePlanBtn center\">"
## [836] "\t\t\t<b><a id=\"db_2\">More Plans<span class=\"caret-bottom-small\"></span></a></b>"
## [837] "\t\t</div>"
## [838] "\t\t</div>"
## [839] "</div>"
## [840] "<div class=\"container featureRoomDetail\" id=\"twinroom\">"
## [841] "\t<div class=\"content featureDetailInfo\">"
## [842] "\t\t<div class=\"media container-child\">"
## [843] "\t\t\t<div data-role=\"modal\" data-target=\"#roomSample_twinroom\" class=\"media-object modal-trigger\">"
## [844] "\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/dkbjTY.jpeg\" width=\"100\" class=\"image-main\"/>"
## [845] "\t\t\t\t\t</div>"
## [846] "\t\t\t\t<div class=\"media-head\">"
## [847] "\t\t\t\t<h3>STANDARD TWIN ROOM </h3>"
## [848] "\t\t\t</div>"
## [849] "\t\t\t<div class=\"media-body\">"
## [850] "\t\t\t\t<div class=\"text-sub\">WITH FULL BATHROOM</div>"
## [851] "\t\t\t</div>"
## [852] "\t\t</div>"
## [853] "\t\t<ul class=\"list-box list-box-fluid\">"
## [854] "\t\t\t<!-- --><li class=\"list-item odd\" id=\"twinroom_3170927\">"
## [855] "\t\t\t\t<div class=\"box\">"
## [856] "\t\t\t\t\t<div class=\"box-content\">"
## [857] "\t\t\t\t\t\t<div class=\"media\">"
## [858] "\t\t\t\t\t\t\t<!-- "
## [859] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [860] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\" width=\"80\"/>"
## [861] "\t\t\t\t\t\t\t\t</div>"
## [862] "\t\t\t\t\t\t\t -->"
## [863] "\t\t\t\t\t\t\t<div class=\"media-head\">Book Earlier! Save More!Breakfast and Dinner Plan</div>"
## [864] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [865] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [866] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [867] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [868] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [869] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [870] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,440</b>"
## [871] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,760<div class=\"text-sub\">per night per person</div>"
## [872] "\t\t\t\t\t\t\t\t\t\t</div>"
## [873] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [874] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"twinroom_3170927\"> "
## [875] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [876] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [877] "\t\t\t\t\t\t\t\t\t</div>"
## [878] "\t\t\t\t\t\t\t\t</div>"
## [879] "\t\t\t\t\t\t</div>"
## [880] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [881] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [882] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [883] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [884] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [885] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\"/>"
## [886] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [887] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [888] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [889] "\t\t\t\t\t\t\t\t\t\t</div>"
## [890] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [891] "\t\t\t\t\t\t\t\t\t\t<text>"
## [892] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/>- Book 60+ days early and save!<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [893] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [894] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [895] "\t\t\t\t\t\t\t\t\t\t\t2<br/>"
## [896] "\t\t\t\t\t\t\t\t\t\t</text>"
## [897] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [898] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,440</b>"
## [899] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,760<div class=\"text-sub\">per night per person</div>"
## [900] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [901] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [902] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"twinroom_3170927\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [903] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [904] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [905] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [906] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [907] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [908] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [909] "\t\t\t\t\t\t\t\t\t</div>"
## [910] "\t\t\t\t\t\t\t\t</div>"
## [911] "\t\t\t\t\t\t\t</div>"
## [912] "\t\t\t\t\t\t</div>"
## [913] "\t\t\t\t\t</div>"
## [914] "\t\t\t\t</div>"
## [915] "\t\t\t</li><!-- --><li class=\"list-item even\" id=\"twinroom_3211918\">"
## [916] "\t\t\t\t<div class=\"box\">"
## [917] "\t\t\t\t\t<div class=\"box-content\">"
## [918] "\t\t\t\t\t\t<div class=\"media\">"
## [919] "\t\t\t\t\t\t\t<!-- "
## [920] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [921] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\" width=\"80\"/>"
## [922] "\t\t\t\t\t\t\t\t</div>"
## [923] "\t\t\t\t\t\t\t -->"
## [924] "\t\t\t\t\t\t\t<div class=\"media-head\">Book Earlier! Save More!Breakfast and Dinner Plan</div>"
## [925] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [926] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [927] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [928] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [929] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [930] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [931] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,540</b>"
## [932] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,860<div class=\"text-sub\">per night per person</div>"
## [933] "\t\t\t\t\t\t\t\t\t\t</div>"
## [934] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [935] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"twinroom_3211918\"> "
## [936] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [937] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [938] "\t\t\t\t\t\t\t\t\t</div>"
## [939] "\t\t\t\t\t\t\t\t</div>"
## [940] "\t\t\t\t\t\t</div>"
## [941] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [942] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [943] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [944] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [945] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [946] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\"/>"
## [947] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [948] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [949] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [950] "\t\t\t\t\t\t\t\t\t\t</div>"
## [951] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [952] "\t\t\t\t\t\t\t\t\t\t<text>"
## [953] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/>- Book 30+ days early and save!<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [954] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [955] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [956] "\t\t\t\t\t\t\t\t\t\t\t2<br/>"
## [957] "\t\t\t\t\t\t\t\t\t\t</text>"
## [958] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [959] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,540</b>"
## [960] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,860<div class=\"text-sub\">per night per person</div>"
## [961] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [962] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [963] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"twinroom_3211918\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [964] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [965] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [966] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [967] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [968] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [969] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [970] "\t\t\t\t\t\t\t\t\t</div>"
## [971] "\t\t\t\t\t\t\t\t</div>"
## [972] "\t\t\t\t\t\t\t</div>"
## [973] "\t\t\t\t\t\t</div>"
## [974] "\t\t\t\t\t</div>"
## [975] "\t\t\t\t</div>"
## [976] "\t\t\t</li><!-- --><li class=\"list-item odd\" id=\"twinroom_3166780\">"
## [977] "\t\t\t\t<div class=\"box\">"
## [978] "\t\t\t\t\t<div class=\"box-content\">"
## [979] "\t\t\t\t\t\t<div class=\"media\">"
## [980] "\t\t\t\t\t\t\t<!-- "
## [981] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [982] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/EzGZs6.jpeg\" width=\"80\"/>"
## [983] "\t\t\t\t\t\t\t\t</div>"
## [984] "\t\t\t\t\t\t\t -->"
## [985] "\t\t\t\t\t\t\t<div class=\"media-head\">Plan</div>"
## [986] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [987] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [988] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [989] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [990] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [991] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [992] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,640</b>"
## [993] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,960<div class=\"text-sub\">per night per person</div>"
## [994] "\t\t\t\t\t\t\t\t\t\t</div>"
## [995] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [996] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"twinroom_3166780\"> "
## [997] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [998] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [999] "\t\t\t\t\t\t\t\t\t</div>"
## [1000] "\t\t\t\t\t\t\t\t</div>"
## [1001] "\t\t\t\t\t\t</div>"
## [1002] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1003] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1004] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1005] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1006] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1007] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/EzGZs6.jpeg\"/>"
## [1008] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [1009] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [1010] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [1011] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1012] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1013] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1014] "\t\t\t\t\t\t\t\t\t\t\tPlan<br/>"
## [1015] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1016] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1017] "\t\t\t\t\t\t\t\t\t\t\t2<br/>"
## [1018] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1019] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1020] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,640</b>"
## [1021] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,960<div class=\"text-sub\">per night per person</div>"
## [1022] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1023] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1024] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"twinroom_3166780\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1025] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1026] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1027] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1028] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1029] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1030] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1031] "\t\t\t\t\t\t\t\t\t</div>"
## [1032] "\t\t\t\t\t\t\t\t</div>"
## [1033] "\t\t\t\t\t\t\t</div>"
## [1034] "\t\t\t\t\t\t</div>"
## [1035] "\t\t\t\t\t</div>"
## [1036] "\t\t\t\t</div>"
## [1037] "\t\t\t</li><!-- --><li class=\"list-item even\" id=\"twinroom_3230277\">"
## [1038] "\t\t\t\t<div class=\"box\">"
## [1039] "\t\t\t\t\t<div class=\"box-content\">"
## [1040] "\t\t\t\t\t\t<div class=\"media\">"
## [1041] "\t\t\t\t\t\t\t<!-- "
## [1042] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1043] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/jmkIsW.jpeg\" width=\"80\"/>"
## [1044] "\t\t\t\t\t\t\t\t</div>"
## [1045] "\t\t\t\t\t\t\t -->"
## [1046] "\t\t\t\t\t\t\t<div class=\"media-head\">Breakfast and Dinner Plan</div>"
## [1047] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1048] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1049] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1050] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1051] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1052] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1053] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,864</b>"
## [1054] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 11,864<div class=\"text-sub\">per night per person</div>"
## [1055] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1056] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1057] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"twinroom_3230277\"> "
## [1058] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1059] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1060] "\t\t\t\t\t\t\t\t\t</div>"
## [1061] "\t\t\t\t\t\t\t\t</div>"
## [1062] "\t\t\t\t\t\t</div>"
## [1063] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1064] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1065] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1066] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1067] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1068] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/jmkIsW.jpeg\"/>"
## [1069] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/s7vSOP.jpeg\"/>"
## [1070] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/7G08Wb.jpeg\"/>"
## [1071] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/jshoUb.jpeg\"/>"
## [1072] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1073] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1074] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1075] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet, Includes beer or soft drink with dinner)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [1076] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1077] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1078] "\t\t\t\t\t\t\t\t\t\t\t2<br/>"
## [1079] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1080] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1081] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,864</b>"
## [1082] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 11,864<div class=\"text-sub\">per night per person</div>"
## [1083] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1084] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1085] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"twinroom_3230277\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1086] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1087] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1088] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1089] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1090] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1091] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1092] "\t\t\t\t\t\t\t\t\t</div>"
## [1093] "\t\t\t\t\t\t\t\t</div>"
## [1094] "\t\t\t\t\t\t\t</div>"
## [1095] "\t\t\t\t\t\t</div>"
## [1096] "\t\t\t\t\t</div>"
## [1097] "\t\t\t\t</div>"
## [1098] "\t\t\t</li></ul>"
## [1099] "\t\t<div class=\"morePlanBtn center\">"
## [1100] "\t\t\t<b><a id=\"twinroom_2\">More Plans<span class=\"caret-bottom-small\"></span></a></b>"
## [1101] "\t\t</div>"
## [1102] "\t\t</div>"
## [1103] "</div>"
## [1104] "<div class=\"container featureRoomDetail\" id=\"ho\">"
## [1105] "\t<div class=\"content featureDetailInfo\">"
## [1106] "\t\t<div class=\"media container-child\">"
## [1107] "\t\t\t<div data-role=\"modal\" data-target=\"#roomSample_ho\" class=\"media-object modal-trigger\">"
## [1108] "\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/QQuGUg.jpeg\" width=\"100\" class=\"image-main\"/>"
## [1109] "\t\t\t\t\t</div>"
## [1110] "\t\t\t\t<div class=\"media-head\">"
## [1111] "\t\t\t\t<h3>MAIN BUILDING STANDARD JAPANESE STYLE ROOM </h3>"
## [1112] "\t\t\t</div>"
## [1113] "\t\t\t<div class=\"media-body\">"
## [1114] "\t\t\t\t<div class=\"text-sub\">with Bathroom and Toilet</div>"
## [1115] "\t\t\t</div>"
## [1116] "\t\t</div>"
## [1117] "\t\t<ul class=\"list-box list-box-fluid\">"
## [1118] "\t\t\t<!-- --><li class=\"list-item odd\" id=\"ho_3170927\">"
## [1119] "\t\t\t\t<div class=\"box\">"
## [1120] "\t\t\t\t\t<div class=\"box-content\">"
## [1121] "\t\t\t\t\t\t<div class=\"media\">"
## [1122] "\t\t\t\t\t\t\t<!-- "
## [1123] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1124] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\" width=\"80\"/>"
## [1125] "\t\t\t\t\t\t\t\t</div>"
## [1126] "\t\t\t\t\t\t\t -->"
## [1127] "\t\t\t\t\t\t\t<div class=\"media-head\">Book Earlier! Save More!Breakfast and Dinner Plan</div>"
## [1128] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1129] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1130] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1131] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1132] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1133] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1134] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,440</b>"
## [1135] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,760<div class=\"text-sub\">per night per person</div>"
## [1136] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1137] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1138] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"ho_3170927\"> "
## [1139] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1140] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1141] "\t\t\t\t\t\t\t\t\t</div>"
## [1142] "\t\t\t\t\t\t\t\t</div>"
## [1143] "\t\t\t\t\t\t</div>"
## [1144] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1145] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1146] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1147] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1148] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1149] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\"/>"
## [1150] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [1151] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [1152] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [1153] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1154] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1155] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1156] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/>- Book 60+ days early and save!<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [1157] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1158] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1159] "\t\t\t\t\t\t\t\t\t\t\t5<br/>"
## [1160] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1161] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1162] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,440</b>"
## [1163] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,760<div class=\"text-sub\">per night per person</div>"
## [1164] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1165] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1166] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"ho_3170927\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1167] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1168] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1169] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1170] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1171] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1172] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1173] "\t\t\t\t\t\t\t\t\t</div>"
## [1174] "\t\t\t\t\t\t\t\t</div>"
## [1175] "\t\t\t\t\t\t\t</div>"
## [1176] "\t\t\t\t\t\t</div>"
## [1177] "\t\t\t\t\t</div>"
## [1178] "\t\t\t\t</div>"
## [1179] "\t\t\t</li><!-- --><li class=\"list-item even\" id=\"ho_3211918\">"
## [1180] "\t\t\t\t<div class=\"box\">"
## [1181] "\t\t\t\t\t<div class=\"box-content\">"
## [1182] "\t\t\t\t\t\t<div class=\"media\">"
## [1183] "\t\t\t\t\t\t\t<!-- "
## [1184] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1185] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\" width=\"80\"/>"
## [1186] "\t\t\t\t\t\t\t\t</div>"
## [1187] "\t\t\t\t\t\t\t -->"
## [1188] "\t\t\t\t\t\t\t<div class=\"media-head\">Book Earlier! Save More!Breakfast and Dinner Plan</div>"
## [1189] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1190] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1191] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1192] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1193] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1194] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1195] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,540</b>"
## [1196] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,860<div class=\"text-sub\">per night per person</div>"
## [1197] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1198] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1199] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"ho_3211918\"> "
## [1200] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1201] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1202] "\t\t\t\t\t\t\t\t\t</div>"
## [1203] "\t\t\t\t\t\t\t\t</div>"
## [1204] "\t\t\t\t\t\t</div>"
## [1205] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1206] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1207] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1208] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1209] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1210] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\"/>"
## [1211] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [1212] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [1213] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [1214] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1215] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1216] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1217] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/>- Book 30+ days early and save!<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [1218] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1219] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1220] "\t\t\t\t\t\t\t\t\t\t\t5<br/>"
## [1221] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1222] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1223] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,540</b>"
## [1224] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,860<div class=\"text-sub\">per night per person</div>"
## [1225] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1226] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1227] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"ho_3211918\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1228] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1229] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1230] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1231] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1232] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1233] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1234] "\t\t\t\t\t\t\t\t\t</div>"
## [1235] "\t\t\t\t\t\t\t\t</div>"
## [1236] "\t\t\t\t\t\t\t</div>"
## [1237] "\t\t\t\t\t\t</div>"
## [1238] "\t\t\t\t\t</div>"
## [1239] "\t\t\t\t</div>"
## [1240] "\t\t\t</li><!-- --><li class=\"list-item odd\" id=\"ho_3166780\">"
## [1241] "\t\t\t\t<div class=\"box\">"
## [1242] "\t\t\t\t\t<div class=\"box-content\">"
## [1243] "\t\t\t\t\t\t<div class=\"media\">"
## [1244] "\t\t\t\t\t\t\t<!-- "
## [1245] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1246] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/EzGZs6.jpeg\" width=\"80\"/>"
## [1247] "\t\t\t\t\t\t\t\t</div>"
## [1248] "\t\t\t\t\t\t\t -->"
## [1249] "\t\t\t\t\t\t\t<div class=\"media-head\">Plan</div>"
## [1250] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1251] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1252] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1253] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1254] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1255] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1256] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,640</b>"
## [1257] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,960<div class=\"text-sub\">per night per person</div>"
## [1258] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1259] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1260] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"ho_3166780\"> "
## [1261] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1262] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1263] "\t\t\t\t\t\t\t\t\t</div>"
## [1264] "\t\t\t\t\t\t\t\t</div>"
## [1265] "\t\t\t\t\t\t</div>"
## [1266] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1267] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1268] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1269] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1270] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1271] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/EzGZs6.jpeg\"/>"
## [1272] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [1273] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [1274] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [1275] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1276] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1277] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1278] "\t\t\t\t\t\t\t\t\t\t\tPlan<br/>"
## [1279] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1280] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1281] "\t\t\t\t\t\t\t\t\t\t\t5<br/>"
## [1282] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1283] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1284] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,640</b>"
## [1285] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,960<div class=\"text-sub\">per night per person</div>"
## [1286] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1287] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1288] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"ho_3166780\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1289] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1290] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1291] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1292] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1293] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1294] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1295] "\t\t\t\t\t\t\t\t\t</div>"
## [1296] "\t\t\t\t\t\t\t\t</div>"
## [1297] "\t\t\t\t\t\t\t</div>"
## [1298] "\t\t\t\t\t\t</div>"
## [1299] "\t\t\t\t\t</div>"
## [1300] "\t\t\t\t</div>"
## [1301] "\t\t\t</li><!-- --><li class=\"list-item even\" id=\"ho_3296583\">"
## [1302] "\t\t\t\t<div class=\"box\">"
## [1303] "\t\t\t\t\t<div class=\"box-content\">"
## [1304] "\t\t\t\t\t\t<div class=\"media\">"
## [1305] "\t\t\t\t\t\t\t<!-- "
## [1306] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1307] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/1YrBZI.jpeg\" width=\"80\"/>"
## [1308] "\t\t\t\t\t\t\t\t</div>"
## [1309] "\t\t\t\t\t\t\t -->"
## [1310] "\t\t\t\t\t\t\t<div class=\"media-head\">Plan</div>"
## [1311] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1312] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1313] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1314] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1315] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1316] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1317] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">13,340</b>"
## [1318] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 17,660<div class=\"text-sub\">per night per person</div>"
## [1319] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1320] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1321] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"ho_3296583\"> "
## [1322] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1323] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1324] "\t\t\t\t\t\t\t\t\t</div>"
## [1325] "\t\t\t\t\t\t\t\t</div>"
## [1326] "\t\t\t\t\t\t</div>"
## [1327] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1328] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1329] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1330] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1331] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1332] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/1YrBZI.jpeg\"/>"
## [1333] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/8eXLKR.jpeg\"/>"
## [1334] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/NvngUt.jpeg\"/>"
## [1335] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/cDJlPx.jpeg\"/>"
## [1336] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1337] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1338] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1339] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Theme park ticket30<br/>"
## [1340] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1341] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1342] "\t\t\t\t\t\t\t\t\t\t\t5<br/>"
## [1343] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1344] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1345] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">13,340</b>"
## [1346] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 17,660<div class=\"text-sub\">per night per person</div>"
## [1347] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1348] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1349] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"ho_3296583\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1350] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1351] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1352] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1353] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1354] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1355] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1356] "\t\t\t\t\t\t\t\t\t</div>"
## [1357] "\t\t\t\t\t\t\t\t</div>"
## [1358] "\t\t\t\t\t\t\t</div>"
## [1359] "\t\t\t\t\t\t</div>"
## [1360] "\t\t\t\t\t</div>"
## [1361] "\t\t\t\t</div>"
## [1362] "\t\t\t</li></ul>"
## [1363] "\t\t<div class=\"morePlanBtn center\">"
## [1364] "\t\t\t<b><a id=\"ho_2\">More Plans<span class=\"caret-bottom-small\"></span></a></b>"
## [1365] "\t\t</div>"
## [1366] "\t\t</div>"
## [1367] "</div>"
## [1368] "<div class=\"container featureRoomDetail\" id=\"mi\">"
## [1369] "\t<div class=\"content featureDetailInfo\">"
## [1370] "\t\t<div class=\"media container-child\">"
## [1371] "\t\t\t<div data-role=\"modal\" data-target=\"#roomSample_mi\" class=\"media-object modal-trigger\">"
## [1372] "\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/8osRh7.jpeg\" width=\"100\" class=\"image-main\"/>"
## [1373] "\t\t\t\t\t</div>"
## [1374] "\t\t\t\t<div class=\"media-head\">"
## [1375] "\t\t\t\t<h3> STANDARD JAPANESE STYLE ROOM 8 TATAMI MATS</h3>"
## [1376] "\t\t\t</div>"
## [1377] "\t\t\t<div class=\"media-body\">"
## [1378] "\t\t\t\t<div class=\"text-sub\">with Bathroom and Toilet</div>"
## [1379] "\t\t\t</div>"
## [1380] "\t\t</div>"
## [1381] "\t\t<ul class=\"list-box list-box-fluid\">"
## [1382] "\t\t\t<!-- --><li class=\"list-item odd\" id=\"mi_3170927\">"
## [1383] "\t\t\t\t<div class=\"box\">"
## [1384] "\t\t\t\t\t<div class=\"box-content\">"
## [1385] "\t\t\t\t\t\t<div class=\"media\">"
## [1386] "\t\t\t\t\t\t\t<!-- "
## [1387] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1388] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\" width=\"80\"/>"
## [1389] "\t\t\t\t\t\t\t\t</div>"
## [1390] "\t\t\t\t\t\t\t -->"
## [1391] "\t\t\t\t\t\t\t<div class=\"media-head\">Book Earlier! Save More!Breakfast and Dinner Plan</div>"
## [1392] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1393] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1394] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1395] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1396] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1397] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1398] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,440</b>"
## [1399] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,760<div class=\"text-sub\">per night per person</div>"
## [1400] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1401] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1402] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"mi_3170927\"> "
## [1403] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1404] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1405] "\t\t\t\t\t\t\t\t\t</div>"
## [1406] "\t\t\t\t\t\t\t\t</div>"
## [1407] "\t\t\t\t\t\t</div>"
## [1408] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1409] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1410] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1411] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1412] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1413] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\"/>"
## [1414] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [1415] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [1416] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [1417] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1418] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1419] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1420] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/>- Book 60+ days early and save!<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [1421] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1422] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1423] "\t\t\t\t\t\t\t\t\t\t\t4<br/>"
## [1424] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1425] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1426] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,440</b>"
## [1427] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,760<div class=\"text-sub\">per night per person</div>"
## [1428] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1429] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1430] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"mi_3170927\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1431] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1432] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1433] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1434] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1435] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1436] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1437] "\t\t\t\t\t\t\t\t\t</div>"
## [1438] "\t\t\t\t\t\t\t\t</div>"
## [1439] "\t\t\t\t\t\t\t</div>"
## [1440] "\t\t\t\t\t\t</div>"
## [1441] "\t\t\t\t\t</div>"
## [1442] "\t\t\t\t</div>"
## [1443] "\t\t\t</li><!-- --><li class=\"list-item even\" id=\"mi_3211918\">"
## [1444] "\t\t\t\t<div class=\"box\">"
## [1445] "\t\t\t\t\t<div class=\"box-content\">"
## [1446] "\t\t\t\t\t\t<div class=\"media\">"
## [1447] "\t\t\t\t\t\t\t<!-- "
## [1448] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1449] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\" width=\"80\"/>"
## [1450] "\t\t\t\t\t\t\t\t</div>"
## [1451] "\t\t\t\t\t\t\t -->"
## [1452] "\t\t\t\t\t\t\t<div class=\"media-head\">Book Earlier! Save More!Breakfast and Dinner Plan</div>"
## [1453] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1454] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1455] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1456] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1457] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1458] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1459] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,540</b>"
## [1460] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,860<div class=\"text-sub\">per night per person</div>"
## [1461] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1462] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1463] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"mi_3211918\"> "
## [1464] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1465] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1466] "\t\t\t\t\t\t\t\t\t</div>"
## [1467] "\t\t\t\t\t\t\t\t</div>"
## [1468] "\t\t\t\t\t\t</div>"
## [1469] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1470] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1471] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1472] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1473] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1474] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\"/>"
## [1475] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [1476] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [1477] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [1478] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1479] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1480] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1481] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/>- Book 30+ days early and save!<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [1482] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1483] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1484] "\t\t\t\t\t\t\t\t\t\t\t4<br/>"
## [1485] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1486] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1487] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,540</b>"
## [1488] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,860<div class=\"text-sub\">per night per person</div>"
## [1489] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1490] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1491] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"mi_3211918\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1492] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1493] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1494] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1495] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1496] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1497] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1498] "\t\t\t\t\t\t\t\t\t</div>"
## [1499] "\t\t\t\t\t\t\t\t</div>"
## [1500] "\t\t\t\t\t\t\t</div>"
## [1501] "\t\t\t\t\t\t</div>"
## [1502] "\t\t\t\t\t</div>"
## [1503] "\t\t\t\t</div>"
## [1504] "\t\t\t</li><!-- --><li class=\"list-item odd\" id=\"mi_3166780\">"
## [1505] "\t\t\t\t<div class=\"box\">"
## [1506] "\t\t\t\t\t<div class=\"box-content\">"
## [1507] "\t\t\t\t\t\t<div class=\"media\">"
## [1508] "\t\t\t\t\t\t\t<!-- "
## [1509] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1510] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/EzGZs6.jpeg\" width=\"80\"/>"
## [1511] "\t\t\t\t\t\t\t\t</div>"
## [1512] "\t\t\t\t\t\t\t -->"
## [1513] "\t\t\t\t\t\t\t<div class=\"media-head\">Plan</div>"
## [1514] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1515] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1516] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1517] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1518] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1519] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1520] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">11,640</b>"
## [1521] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,960<div class=\"text-sub\">per night per person</div>"
## [1522] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1523] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1524] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"mi_3166780\"> "
## [1525] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1526] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1527] "\t\t\t\t\t\t\t\t\t</div>"
## [1528] "\t\t\t\t\t\t\t\t</div>"
## [1529] "\t\t\t\t\t\t</div>"
## [1530] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1531] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1532] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1533] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1534] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1535] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/EzGZs6.jpeg\"/>"
## [1536] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [1537] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [1538] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [1539] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1540] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1541] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1542] "\t\t\t\t\t\t\t\t\t\t\tPlan<br/>"
## [1543] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1544] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1545] "\t\t\t\t\t\t\t\t\t\t\t4<br/>"
## [1546] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1547] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1548] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">11,640</b>"
## [1549] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 15,960<div class=\"text-sub\">per night per person</div>"
## [1550] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1551] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1552] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"mi_3166780\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1553] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1554] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1555] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1556] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1557] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1558] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1559] "\t\t\t\t\t\t\t\t\t</div>"
## [1560] "\t\t\t\t\t\t\t\t</div>"
## [1561] "\t\t\t\t\t\t\t</div>"
## [1562] "\t\t\t\t\t\t</div>"
## [1563] "\t\t\t\t\t</div>"
## [1564] "\t\t\t\t</div>"
## [1565] "\t\t\t</li><!-- --><li class=\"list-item even\" id=\"mi_3230277\">"
## [1566] "\t\t\t\t<div class=\"box\">"
## [1567] "\t\t\t\t\t<div class=\"box-content\">"
## [1568] "\t\t\t\t\t\t<div class=\"media\">"
## [1569] "\t\t\t\t\t\t\t<!-- "
## [1570] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1571] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/jmkIsW.jpeg\" width=\"80\"/>"
## [1572] "\t\t\t\t\t\t\t\t</div>"
## [1573] "\t\t\t\t\t\t\t -->"
## [1574] "\t\t\t\t\t\t\t<div class=\"media-head\">Breakfast and Dinner Plan</div>"
## [1575] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1576] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1577] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1578] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1579] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1580] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1581] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">12,720</b>"
## [1582] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 12,720<div class=\"text-sub\">per night per person</div>"
## [1583] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1584] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1585] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"mi_3230277\"> "
## [1586] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1587] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1588] "\t\t\t\t\t\t\t\t\t</div>"
## [1589] "\t\t\t\t\t\t\t\t</div>"
## [1590] "\t\t\t\t\t\t</div>"
## [1591] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1592] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1593] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1594] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1595] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1596] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/jmkIsW.jpeg\"/>"
## [1597] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/s7vSOP.jpeg\"/>"
## [1598] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/7G08Wb.jpeg\"/>"
## [1599] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/jshoUb.jpeg\"/>"
## [1600] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1601] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1602] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1603] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet, Includes beer or soft drink with dinner)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [1604] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1605] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1606] "\t\t\t\t\t\t\t\t\t\t\t4<br/>"
## [1607] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1608] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1609] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">12,720</b>"
## [1610] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 12,720<div class=\"text-sub\">per night per person</div>"
## [1611] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1612] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1613] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"mi_3230277\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1614] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1615] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1616] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1617] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1618] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1619] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1620] "\t\t\t\t\t\t\t\t\t</div>"
## [1621] "\t\t\t\t\t\t\t\t</div>"
## [1622] "\t\t\t\t\t\t\t</div>"
## [1623] "\t\t\t\t\t\t</div>"
## [1624] "\t\t\t\t\t</div>"
## [1625] "\t\t\t\t</div>"
## [1626] "\t\t\t</li></ul>"
## [1627] "\t\t<div class=\"morePlanBtn center\">"
## [1628] "\t\t\t<b><a id=\"mi_2\">More Plans<span class=\"caret-bottom-small\"></span></a></b>"
## [1629] "\t\t</div>"
## [1630] "\t\t</div>"
## [1631] "</div>"
## [1632] "<div class=\"container featureRoomDetail\" id=\"oma\">"
## [1633] "\t<div class=\"content featureDetailInfo\">"
## [1634] "\t\t<div class=\"media container-child\">"
## [1635] "\t\t\t<div data-role=\"modal\" data-target=\"#roomSample_oma\" class=\"media-object modal-trigger\">"
## [1636] "\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/4B8sX2.jpeg\" width=\"100\" class=\"image-main\"/>"
## [1637] "\t\t\t\t\t</div>"
## [1638] "\t\t\t\t<div class=\"media-head\">"
## [1639] "\t\t\t\t<h3>JAPANESE STYLE ROOM MAXIMUM 8 PEOPLE</h3>"
## [1640] "\t\t\t</div>"
## [1641] "\t\t\t<div class=\"media-body\">"
## [1642] "\t\t\t\t<div class=\"text-sub\">with Bathroom and Toilet</div>"
## [1643] "\t\t\t</div>"
## [1644] "\t\t</div>"
## [1645] "\t\t<ul class=\"list-box list-box-fluid\">"
## [1646] "\t\t\t<!-- --><li class=\"list-item odd\" id=\"oma_3230277\">"
## [1647] "\t\t\t\t<div class=\"box\">"
## [1648] "\t\t\t\t\t<div class=\"box-content\">"
## [1649] "\t\t\t\t\t\t<div class=\"media\">"
## [1650] "\t\t\t\t\t\t\t<!-- "
## [1651] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1652] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/jmkIsW.jpeg\" width=\"80\"/>"
## [1653] "\t\t\t\t\t\t\t\t</div>"
## [1654] "\t\t\t\t\t\t\t -->"
## [1655] "\t\t\t\t\t\t\t<div class=\"media-head\">Breakfast and Dinner Plan</div>"
## [1656] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1657] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1658] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1659] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1660] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1661] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1662] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">12,080</b>"
## [1663] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 12,080<div class=\"text-sub\">per night per person</div>"
## [1664] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1665] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1666] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"oma_3230277\"> "
## [1667] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1668] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1669] "\t\t\t\t\t\t\t\t\t</div>"
## [1670] "\t\t\t\t\t\t\t\t</div>"
## [1671] "\t\t\t\t\t\t</div>"
## [1672] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1673] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1674] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1675] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1676] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1677] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/jmkIsW.jpeg\"/>"
## [1678] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/s7vSOP.jpeg\"/>"
## [1679] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/7G08Wb.jpeg\"/>"
## [1680] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/jshoUb.jpeg\"/>"
## [1681] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1682] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1683] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1684] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet, Includes beer or soft drink with dinner)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [1685] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1686] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1687] "\t\t\t\t\t\t\t\t\t\t\t8<br/>"
## [1688] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1689] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1690] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">12,080</b>"
## [1691] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 12,080<div class=\"text-sub\">per night per person</div>"
## [1692] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1693] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1694] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"oma_3230277\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1695] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1696] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1697] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1698] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1699] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1700] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1701] "\t\t\t\t\t\t\t\t\t</div>"
## [1702] "\t\t\t\t\t\t\t\t</div>"
## [1703] "\t\t\t\t\t\t\t</div>"
## [1704] "\t\t\t\t\t\t</div>"
## [1705] "\t\t\t\t\t</div>"
## [1706] "\t\t\t\t</div>"
## [1707] "\t\t\t</li><!-- --><li class=\"list-item even\" id=\"oma_3170927\">"
## [1708] "\t\t\t\t<div class=\"box\">"
## [1709] "\t\t\t\t\t<div class=\"box-content\">"
## [1710] "\t\t\t\t\t\t<div class=\"media\">"
## [1711] "\t\t\t\t\t\t\t<!-- "
## [1712] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1713] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\" width=\"80\"/>"
## [1714] "\t\t\t\t\t\t\t\t</div>"
## [1715] "\t\t\t\t\t\t\t -->"
## [1716] "\t\t\t\t\t\t\t<div class=\"media-head\">Book Earlier! Save More!Breakfast and Dinner Plan</div>"
## [1717] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1718] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1719] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1720] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1721] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1722] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1723] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">12,520</b>"
## [1724] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 16,840<div class=\"text-sub\">per night per person</div>"
## [1725] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1726] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1727] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"oma_3170927\"> "
## [1728] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1729] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1730] "\t\t\t\t\t\t\t\t\t</div>"
## [1731] "\t\t\t\t\t\t\t\t</div>"
## [1732] "\t\t\t\t\t\t</div>"
## [1733] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1734] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1735] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1736] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1737] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1738] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\"/>"
## [1739] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [1740] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [1741] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [1742] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1743] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1744] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1745] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/>- Book 60+ days early and save!<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [1746] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1747] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1748] "\t\t\t\t\t\t\t\t\t\t\t8<br/>"
## [1749] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1750] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1751] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">12,520</b>"
## [1752] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 16,840<div class=\"text-sub\">per night per person</div>"
## [1753] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1754] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1755] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"oma_3170927\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1756] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1757] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1758] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1759] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1760] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1761] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1762] "\t\t\t\t\t\t\t\t\t</div>"
## [1763] "\t\t\t\t\t\t\t\t</div>"
## [1764] "\t\t\t\t\t\t\t</div>"
## [1765] "\t\t\t\t\t\t</div>"
## [1766] "\t\t\t\t\t</div>"
## [1767] "\t\t\t\t</div>"
## [1768] "\t\t\t</li><!-- --><li class=\"list-item odd\" id=\"oma_3211918\">"
## [1769] "\t\t\t\t<div class=\"box\">"
## [1770] "\t\t\t\t\t<div class=\"box-content\">"
## [1771] "\t\t\t\t\t\t<div class=\"media\">"
## [1772] "\t\t\t\t\t\t\t<!-- "
## [1773] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1774] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\" width=\"80\"/>"
## [1775] "\t\t\t\t\t\t\t\t</div>"
## [1776] "\t\t\t\t\t\t\t -->"
## [1777] "\t\t\t\t\t\t\t<div class=\"media-head\">Book Earlier! Save More!Breakfast and Dinner Plan</div>"
## [1778] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1779] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1780] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1781] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1782] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1783] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1784] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">12,620</b>"
## [1785] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 16,940<div class=\"text-sub\">per night per person</div>"
## [1786] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1787] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1788] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"oma_3211918\"> "
## [1789] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1790] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1791] "\t\t\t\t\t\t\t\t\t</div>"
## [1792] "\t\t\t\t\t\t\t\t</div>"
## [1793] "\t\t\t\t\t\t</div>"
## [1794] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1795] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1796] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1797] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1798] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1799] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/ggMo3P.jpeg\"/>"
## [1800] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [1801] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [1802] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [1803] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1804] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1805] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1806] "\t\t\t\t\t\t\t\t\t\t\t[ Features ]<br/>- Wonderful cuisine<br/>- Wonderful ONSEN(Hot Spring)<br/>- Open-air bath<br/>- Chartered bath<br/>- Book 30+ days early and save!<br/><br/>[ Meals ]<br/>- Breakfast : Every day During Stay(Buffet)<br/>- Dinner : Every day During Stay(Buffet)<br/><br/>[ Facilities ]<br/>- Complementary : Open-air bath, Sauna, Public large bath<br/><br/>"
## [1807] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1808] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1809] "\t\t\t\t\t\t\t\t\t\t\t8<br/>"
## [1810] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1811] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1812] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">12,620</b>"
## [1813] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 16,940<div class=\"text-sub\">per night per person</div>"
## [1814] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1815] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1816] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"oma_3211918\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1817] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1818] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1819] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1820] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1821] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1822] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1823] "\t\t\t\t\t\t\t\t\t</div>"
## [1824] "\t\t\t\t\t\t\t\t</div>"
## [1825] "\t\t\t\t\t\t\t</div>"
## [1826] "\t\t\t\t\t\t</div>"
## [1827] "\t\t\t\t\t</div>"
## [1828] "\t\t\t\t</div>"
## [1829] "\t\t\t</li><!-- --><li class=\"list-item even\" id=\"oma_3166780\">"
## [1830] "\t\t\t\t<div class=\"box\">"
## [1831] "\t\t\t\t\t<div class=\"box-content\">"
## [1832] "\t\t\t\t\t\t<div class=\"media\">"
## [1833] "\t\t\t\t\t\t\t<!-- "
## [1834] "\t\t\t\t\t\t\t<div class=\"media-object\">"
## [1835] "\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/EzGZs6.jpeg\" width=\"80\"/>"
## [1836] "\t\t\t\t\t\t\t\t</div>"
## [1837] "\t\t\t\t\t\t\t -->"
## [1838] "\t\t\t\t\t\t\t<div class=\"media-head\">Plan</div>"
## [1839] "\t\t\t\t\t\t\t<div class=\"media-body\">"
## [1840] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [1841] "\t\t\t\t\t\t\t\t\tBreakfast: included /"
## [1842] "\t\t\t\t\t\t\t\t\tDinner: included</div>"
## [1843] "\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1844] "\t\t\t\t\t\t\t\t\t\t\tJPY "
## [1845] "\t\t\t\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">12,720</b>"
## [1846] "\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 17,040<div class=\"text-sub\">per night per person</div>"
## [1847] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1848] "\t\t\t\t\t\t\t\t\t<div class=\"pull-right\">"
## [1849] "\t\t\t\t\t\t\t\t\t\t<span data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\" id=\"oma_3166780\"> "
## [1850] "\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1851] "\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1852] "\t\t\t\t\t\t\t\t\t</div>"
## [1853] "\t\t\t\t\t\t\t\t</div>"
## [1854] "\t\t\t\t\t\t</div>"
## [1855] "\t\t\t\t\t\t<div class=\"clearfix\">"
## [1856] "\t\t\t\t\t\t\t<div class=\"expand-oneway\">"
## [1857] "\t\t\t\t\t\t\t\t<a class=\"expand-nav pull-left\">Show All</a>"
## [1858] "\t\t\t\t\t\t\t\t<div class=\"expand-content hide\">"
## [1859] "\t\t\t\t\t\t\t\t\t<div class=\"carousel-mini container-child\">"
## [1860] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/EzGZs6.jpeg\"/>"
## [1861] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/R4dBAM.jpeg\"/>"
## [1862] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/mE1GbI.jpeg\"/>"
## [1863] "\t\t\t\t\t\t\t\t\t\t<img src=\"http://img.travel.rakuten.co.jp/share/image_up/39175/LARGE/rzZd1D.jpeg\"/>"
## [1864] "\t\t\t\t\t\t\t\t\t\t</div>"
## [1865] "\t\t\t\t\t\t\t\t\t<div class=\"container-child\">"
## [1866] "\t\t\t\t\t\t\t\t\t\t<text>"
## [1867] "\t\t\t\t\t\t\t\t\t\t\tPlan<br/>"
## [1868] "\t\t\t\t\t\t\t\t\t\t\t<!-- <Max.people><br/> -->"
## [1869] "\t\t\t\t\t\t\t\t\t\t\t<Max. number of people><br/>"
## [1870] "\t\t\t\t\t\t\t\t\t\t\t8<br/>"
## [1871] "\t\t\t\t\t\t\t\t\t\t</text>"
## [1872] "\t\t\t\t\t\t\t\t\t\t<div class=\"info right\">"
## [1873] "\t\t\t\t\t\t\t\t\t\t\t\t\tJPY <b class=\"price text-xlarge\">12,720</b>"
## [1874] "\t\t\t\t\t\t\t\t\t\t\t\t\t 嚚\x9e 17,040<div class=\"text-sub\">per night per person</div>"
## [1875] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1876] "\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\">"
## [1877] "\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"oma_3166780\" data-role=\"modal\" data-target=\"#search\" class=\"btn btn-emph\">"
## [1878] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"icon-search-small\"></i>"
## [1879] "\t\t\t\t\t\t\t\t\t\t\t\t\t\tSelect plan</span>"
## [1880] "\t\t\t\t\t\t\t\t\t\t\t\t</div>"
## [1881] "\t\t\t\t\t\t\t\t\t\t\t<div class=\"info text-sub\">"
## [1882] "\t\t\t\t\t\t\t\t\t\tPay at hotel / prepay with credit card, "
## [1883] "\t\t\t\t\t\t\t\t\t\tVAT (8%) included, service charge included</div>"
## [1884] "\t\t\t\t\t\t\t\t\t</div>"
## [1885] "\t\t\t\t\t\t\t\t</div>"
## [1886] "\t\t\t\t\t\t\t</div>"
## [1887] "\t\t\t\t\t\t</div>"
## [1888] "\t\t\t\t\t</div>"
## [1889] "\t\t\t\t</div>"
## [1890] "\t\t\t</li></ul>"
## [1891] "\t\t<div class=\"morePlanBtn center\">"
## [1892] "\t\t\t<b><a id=\"oma_2\">More Plans<span class=\"caret-bottom-small\"></span></a></b>"
## [1893] "\t\t</div>"
## [1894] "\t\t</div>"
## [1895] "</div>"
## [1896] "<div class=\"container99 moreRoomBtn\">"
## [1897] "\t<div class=\"content btns center\">"
## [1898] "\t\t<a class=\"btn\" id=\"2\">More Rooms</a>"
## [1899] "\t</div>"
## [1900] "</div>"
## [1901] "<div class=\"container featureHotelDetail\">"
## [1902] "\t<div class=\"content\">"
## [1903] "\t\t<div class=\"section\">"
## [1904] "\t\t\t<h2 class=\"title01\">Facility Details</h2>"
## [1905] "\t\t\t<dl class=\"dl-vertical\">"
## [1906] "\t\t\t<dt>Hotel Facilities</dt>"
## [1907] "\t\t\t\t<dd>"
## [1908] "\t\t\t\t\t<ul class=\"list-disc list-fluid\">"
## [1909] "\t\t\t\t\t<li>Cafe</li>"
## [1910] "\t\t\t\t\t<li>Night Club</li>"
## [1911] "\t\t\t\t\t<li>Midnight Snack Corner</li>"
## [1912] "\t\t\t\t\t<li>Karaoke Room</li>"
## [1913] "\t\t\t\t\t</ul>"
## [1914] "\t\t\t\t</dd>"
## [1915] "\t\t\t\t<div class=\"expand-oneway\">"
## [1916] "\t\t\t\t\t<a href=\"#\" class=\"expand-nav\">Show All</a>"
## [1917] "\t\t\t\t\t<div class=\"expand-content hide\">"
## [1918] "\t\t\t\t\t<dd>"
## [1919] "\t\t\t\t\t\t\t<ul class=\"list-disc list-fluid\">"
## [1920] "\t\t\t\t\t\t\t<li>Banquet Hall</li>"
## [1921] "\t\t\t\t\t\t\t<li>Conference Room</li>"
## [1922] "\t\t\t\t\t\t\t<li>Large Communal Bath</li>"
## [1923] "\t\t\t\t\t\t\t<li>Sauna</li>"
## [1924] "\t\t\t\t\t\t\t<li>Outdoor Bath</li>"
## [1925] "\t\t\t\t\t\t\t<li>Non-Smoking Room</li>"
## [1926] "\t\t\t\t\t\t\t<li>Shop</li>"
## [1927] "\t\t\t\t\t\t\t<li>Vending Machine</li>"
## [1928] "\t\t\t\t\t\t\t<li>Coin Laundry</li>"
## [1929] "\t\t\t\t\t\t\t<li>Spa</li>"
## [1930] "\t\t\t\t\t\t\t<li>Amusement Arcade</li>"
## [1931] "\t\t\t\t\t\t\t<li>Connecting Room (Some Rooms Only, Reservation Required)</li>"
## [1932] "\t\t\t\t\t\t\t</ul>"
## [1933] "\t\t\t\t\t\t</dd>"
## [1934] "\t\t\t\t\t\t<dt>Available Services</dt>"
## [1935] "\t\t\t\t\t\t<dd>"
## [1936] "\t\t\t\t\t\t\t<ul class=\"list-disc list-fluid\">"
## [1937] "\t\t\t\t\t\t\t<li>Shuttle Bus</li>"
## [1938] "\t\t\t\t\t\t\t<li>Computer Access Available</li>"
## [1939] "\t\t\t\t\t\t\t<li>Wake-Up Call</li>"
## [1940] "\t\t\t\t\t\t\t<li>Express Delivery</li>"
## [1941] "\t\t\t\t\t\t\t</ul>"
## [1942] "\t\t\t\t\t\t</dd>"
## [1943] "\t\t\t\t\t\t<dt>Room Facilities</dt>"
## [1944] "\t\t\t\t\t\t<dd>"
## [1945] "\t\t\t\t\t\t\t<ul class=\"list-disc list-fluid\">"
## [1946] "\t\t\t\t\t\t\t<li>TV</li>"
## [1947] "\t\t\t\t\t\t\t<li>Video On Demand</li>"
## [1948] "\t\t\t\t\t\t\t<li>Satellite TV (Complimentary)</li>"
## [1949] "\t\t\t\t\t\t\t<li>Telephone</li>"
## [1950] "\t\t\t\t\t\t\t<li>Electric Kettle</li>"
## [1951] "\t\t\t\t\t\t\t<li>Tea Set</li>"
## [1952] "\t\t\t\t\t\t\t<li>Refrigerator</li>"
## [1953] "\t\t\t\t\t\t\t<li>Hair Dryer</li>"
## [1954] "\t\t\t\t\t\t\t<li>Trouser Press (Lending)</li>"
## [1955] "\t\t\t\t\t\t\t<li>Desk Lamp (Lending)</li>"
## [1956] "\t\t\t\t\t\t\t<li>Iron (Lending)</li>"
## [1957] "\t\t\t\t\t\t\t<li>Humidifier (Lending)</li>"
## [1958] "\t\t\t\t\t\t\t<li>Individual Temperature Control</li>"
## [1959] "\t\t\t\t\t\t\t<li>Toilet with Automatic Washing Function</li>"
## [1960] "\t\t\t\t\t\t\t<li>Crib</li>"
## [1961] "\t\t\t\t\t\t\t<li>Bar Soap</li>"
## [1962] "\t\t\t\t\t\t\t<li>Body Soap</li>"
## [1963] "\t\t\t\t\t\t\t<li>Shampoo</li>"
## [1964] "\t\t\t\t\t\t\t<li>Rinse</li>"
## [1965] "\t\t\t\t\t\t\t<li>Toothbrush</li>"
## [1966] "\t\t\t\t\t\t\t<li>Razor</li>"
## [1967] "\t\t\t\t\t\t\t<li>Shower Cap</li>"
## [1968] "\t\t\t\t\t\t\t<li>Towels</li>"
## [1969] "\t\t\t\t\t\t\t<li>Bath Towel</li>"
## [1970] "\t\t\t\t\t\t\t<li>Bathrobe (Japanese Style)</li>"
## [1971] "\t\t\t\t\t\t\t<li>Slippers</li>"
## [1972] "\t\t\t\t\t\t\t<li>Safe</li>"
## [1973] "\t\t\t\t\t\t\t</ul>"
## [1974] "\t\t\t\t\t\t</dd>"
## [1975] "\t\t\t\t\t\t</div>"
## [1976] "\t\t\t\t</div>"
## [1977] "\t\t\t</dl>"
## [1978] "\t\t</div>"
## [1979] "\t\t<div class=\"section\">"
## [1980] "\t\t\t<h2 class=\"title01\">Credit Card</h2>"
## [1981] "\t\t\t<ul class=\"list-disc list-fluid\">"
## [1982] "\t\t\t\t<li>VISA</li>"
## [1983] "\t\t\t\t<li>JCB</li>"
## [1984] "\t\t\t\t<li>American Express</li>"
## [1985] "\t\t\t\t<li>Diner's Club</li>"
## [1986] "\t\t\t\t<li>UC</li>"
## [1987] "\t\t\t\t<li>DC</li>"
## [1988] "\t\t\t\t</ul>"
## [1989] "\t\t\t<div class=\"expand-oneway\">"
## [1990] "\t\t\t\t<a href=\"#\" class=\"expand-nav\">Show All</a>"
## [1991] "\t\t\t\t<div class=\"expand-content hide\">"
## [1992] "\t\t\t\t\t<ul class=\"list-disc list-fluid\">"
## [1993] "\t\t\t\t\t\t<li>NICOS</li>"
## [1994] "\t\t\t\t\t\t<li>OMC</li>"
## [1995] "\t\t\t\t\t\t<li>Bank Card</li>"
## [1996] "\t\t\t\t\t\t<li>Master Card</li>"
## [1997] "\t\t\t\t\t\t<li>JTB</li>"
## [1998] "\t\t\t\t\t\t<li>JAL</li>"
## [1999] "\t\t\t\t\t\t<li>Debit Card</li>"
## [2000] "\t\t\t\t\t\t<li>Acceptable</li>"
## [2001] "\t\t\t\t\t\t</ul>"
## [2002] "\t\t\t\t</div>"
## [2003] "\t\t\t</div>"
## [2004] "\t\t</div>"
## [2005] "\t\t<div class=\"section\">"
## [2006] "\t\t\t<h2 class=\"title01\">Other facilities</h2>"
## [2007] "\t\t\t<dl class=\"dl-vertical\">"
## [2008] "\t\t\t<dt>Places to eat</dt>"
## [2009] "\t\t\t\t<dd>"
## [2010] "\t\t\t\t\t<ul class=\"list-disc list-fluid\">"
## [2011] "\t\t\t\t\t<li>Breakfast: Restaurant (Buffet) </li>"
## [2012] "\t\t\t\t\t<li>Dinner: Room, Restaurant (Buffet) </li>"
## [2013] "\t\t\t\t\t</ul>"
## [2014] "\t\t\t\t</dd>"
## [2015] "\t\t\t\t<div class=\"expand-oneway\">"
## [2016] "\t\t\t\t\t<a href=\"#\" class=\"expand-nav\">Show All</a>"
## [2017] "\t\t\t\t\t<div class=\"expand-content hide\">"
## [2018] "\t\t\t\t\t<dd>"
## [2019] "\t\t\t\t\t\t\t<ul class=\"list-disc list-fluid\">"
## [2020] "\t\t\t\t\t\t\t</ul>"
## [2021] "\t\t\t\t\t\t</dd>"
## [2022] "\t\t\t\t\t\t<dt>Bathroom</dt>"
## [2023] "\t\t\t\t\t\t<dd>"
## [2024] "\t\t\t\t\t\t\t<ul class=\"list-disc list-fluid\">"
## [2025] "\t\t\t\t\t\t\t<li>Hot Spring (Onsen):Hot Springs, Large Communal Bath, Outdoor Bath, Sauna, Family Bath, Natural Hot Spring, Artificial Hot Spring, Cold Bath </li>"
## [2026] "\t\t\t\t\t\t\t<li>Spring:Sulfuric Spring, Salt Spring, Iron Spring </li>"
## [2027] "\t\t\t\t\t\t\t<li>Benefits:Arteriosclerosis, Skin Diseases, Rheumatism and Neurosis </li>"
## [2028] "\t\t\t\t\t\t\t</ul>"
## [2029] "\t\t\t\t\t\t</dd>"
## [2030] "\t\t\t\t\t\t<dt>Barrier-free</dt>"
## [2031] "\t\t\t\t\t\t<dd>"
## [2032] "\t\t\t\t\t\t\t<ul class=\"list-disc list-fluid\">"
## [2033] "\t\t\t\t\t\t\t<li>Wheelchair-Accessible</li>"
## [2034] "\t\t\t\t\t\t\t<li>Wheelchair Rental Available</li>"
## [2035] "\t\t\t\t\t\t\t<li>Barrier-Free Restroom</li>"
## [2036] "\t\t\t\t\t\t\t<li>Western Toilet Available in Each Guest Room</li>"
## [2037] "\t\t\t\t\t\t\t<li>Hand Rails in Bathing Area</li>"
## [2038] "\t\t\t\t\t\t\t<li>Wheelchair-Accessible Restrooms Available On-Site</li>"
## [2039] "\t\t\t\t\t\t\t<li>Special menu for the elderly available with prior notification</li>"
## [2040] "\t\t\t\t\t\t\t<li>Allergy-friendly menu available with prior notification</li>"
## [2041] "\t\t\t\t\t\t\t</ul>"
## [2042] "\t\t\t\t\t\t</dd>"
## [2043] "\t\t\t\t\t\t<dt>Nearby places and activities of interest</dt>"
## [2044] "\t\t\t\t\t\t<dd>"
## [2045] "\t\t\t\t\t\t\t<ul class=\"list-disc list-fluid\">"
## [2046] "\t\t\t\t\t\t\t<li>Golf</li>"
## [2047] "\t\t\t\t\t\t\t<li>Hiking</li>"
## [2048] "\t\t\t\t\t\t\t<li>Skiing</li>"
## [2049] "\t\t\t\t\t\t\t<li>Horse-Riding</li>"
## [2050] "\t\t\t\t\t\t\t<li>Aquarium</li>"
## [2051] "\t\t\t\t\t\t\t<li>Theme Park</li>"
## [2052] "\t\t\t\t\t\t\t</ul>"
## [2053] "\t\t\t\t\t\t</dd>"
## [2054] "\t\t\t\t\t\t</div>"
## [2055] "\t\t\t\t</div>"
## [2056] "\t\t\t</dl>"
## [2057] "\t\t</div>"
## [2058] "\t\t<div class=\"section\">"
## [2059] "\t\t\t<h2 class=\"title01\">Notifications</h2>"
## [2060] "\t\t\t<div class=\"text\">"
## [2061] "\t\t\t\t<p>"
## [2062] "\t\t\t\t\t<ul>"
## [2063] "\t\t\t\t\t<li>If you are late for check-in time, please call the hotel directly.There is no closing time. </li>"
## [2064] "\t\t\t\t\t<li>We'll hold your booking until 19:00. If you're late for that time without notice, the booking will be canceled. </li>"
## [2065] "\t\t\t\t\t<li>Extra bed is not available. </li>"
## [2066] "\t\t\t\t\t</ul>"
## [2067] "\t\t\t\t</p>"
## [2068] "\t\t\t\t<div class=\"expand-oneway\">"
## [2069] "\t\t\t\t\t<a href=\"#\" class=\"expand-nav\">Show All</a>"
## [2070] "\t\t\t\t\t<div class=\"expand-content hide\">"
## [2071] "\t\t\t\t\t\t<ul>"
## [2072] "\t\t\t\t\t\t\t</ul>"
## [2073] "\t\t\t\t\t</div>"
## [2074] "\t\t\t\t</div>"
## [2075] "\t\t\t</div>"
## [2076] "\t\t</div>"
## [2077] "\t\t<div class=\"section\">"
## [2078] "\t\t\t<h2 class=\"title01\">Cancellation policy</h2>"
## [2079] "\t\t\t<div class=\"text\">"
## [2080] "\t\t\t\t<p>The cancellation fee is based on the date (Japan Standard Time) the booking changes and cancellation request are accepted.</p>"
## [2081] "\t\t\t\t<div class=\"expand-oneway\">"
## [2082] "\t\t\t\t\t<a href=\"#\" class=\"expand-nav\">Show All</a>"
## [2083] "\t\t\t\t\t<div class=\"expand-content hide\">"
## [2084] "\t\t\t\t\t\t<ul>"
## [2085] "\t\t\t\t\t\t\t<li>No-show: 100%</li>"
## [2086] "\t\t\t\t\t\t\t<li>On the date of arrival: 100%</li>"
## [2087] "\t\t\t\t\t\t\t<li>One day prior to arrival: 50%</li>"
## [2088] "\t\t\t\t\t\t\t<li>2 days prior to arrival: 30%</li>"
## [2089] "\t\t\t\t\t\t\t<li>3 days prior to arrival: 30%</li>"
## [2090] "\t\t\t\t\t\t\t</ul>"
## [2091] "\t\t\t\t\t</div>"
## [2092] "\t\t\t\t</div>"
## [2093] "\t\t\t</div>"
## [2094] "\t\t</div>"
## [2095] "\t</div>"
## [2096] "</div><div class=\"container featureRecommend featureHotelList\" style=\"display:none\">"
## [2097] "\t<div class=\"heading\">"
## [2098] "\t\t<h1 class=\"title\">Recommended Hotel in Noboribetsu</h1>"
## [2099] "\t</div>"
## [2100] "\t<div class=\"content\">"
## [2101] "\t\t<ul class=\"list-box list-box-fluid\" data-limit=\"80\">"
## [2102] "\t\t\t<li class=\"list-item\">"
## [2103] "\t\t\t\t<a href=\"#\" class=\"box\">"
## [2104] "\t\t\t\t\t<div class=\"box-content media\">"
## [2105] "\t\t\t\t\t\t<div class=\"media-head\">{recommendedHotel.hotelName}</div>"
## [2106] "\t\t\t\t\t\t<div class=\"media-object\">"
## [2107] "\t\t\t\t\t\t\t<img src=\"\" width=\"100\" height=\"80\" class=\"image-main\" />"
## [2108] "\t\t\t\t\t\t</div>"
## [2109] "\t\t\t\t\t\t<div class=\"media-body\">"
## [2110] "\t\t\t\t\t\t\t<div class=\"featureHotelInfo\">"
## [2111] "\t\t\t\t\t\t\t\t<div title=\"Hotel Rank 4.0 stars\" class=\"rank\"></div>"
## [2112] "\t\t\t\t\t\t\t\t<div class=\"review\">Guest Review Score<b> {recommendedHotel.score}</b></div>"
## [2113] "\t\t\t\t\t\t\t\t<div class=\"text-sub\">"
## [2114] "\t\t\t\t\t\t\t\t\t{recommendedHotel.address}"
## [2115] "\t\t\t\t\t\t\t\t</div>"
## [2116] "\t\t\t\t\t\t\t</div>"
## [2117] "\t\t\t\t\t\t</div>"
## [2118] "\t\t\t\t\t\t<div class=\"media-foot\">"
## [2119] "\t\t\t\t\t\t\t<div class=\"info\">"
## [2120] "\t\t\t\t\t\t\t\tTotal: JPY "
## [2121] "\t\t\t\t\t\t\t\t<b class=\"price text-xlarge\">"
## [2122] "\t\t\t\t\t\t\t\t{recommendedHotel.minPrice}"
## [2123] "\t\t\t\t\t\t\t\t</b> 嚚\x9e "
## [2124] "\t\t\t\t\t\t\t</div>"
## [2125] "\t\t\t\t\t\t\t<p class=\"info\">"
## [2126] "\t\t\t\t\t\t\t\t</p>"
## [2127] "\t\t\t\t\t\t</div>"
## [2128] "\t\t\t\t\t</div>"
## [2129] "\t\t\t\t</a>"
## [2130] "\t\t\t</li>"
## [2131] "\t\t</ul>"
## [2132] "\t</div>"
## [2133] "</div></div>"
## [2134] "\t\t</div>"
## [2135] "\t\t<div id=\"subfooter\">"
## [2136] "\t<div class=\"nav-primary\">"
## [2137] "\t<ol class=\"breadcrumb\">"
## [2138] "\t\t<li><a href=\"http://travel.rakuten.com/\">Home</a></li>"
## [2139] "\t\t<li><a href=\"/hotellist/Japan/JP/\">Japan</a></li>"
## [2140] "\t\t<li><a href=\"/hotellist/Japan-Hokkaido/JP_JP-01/\">Hokkaido</a></li>"
## [2141] "\t\t<li><a href=\"/hotellist/Japan-Hokkaido-Noboribetsu/10868/\">Noboribetsu</a></li>"
## [2142] "\t\t<li>Noboribetsu Onsen Noboribetsu Grand Hotel</li>"
## [2143] "\t\t</ol>"
## [2144] "</div>"
## [2145] "</div>"
## [2146] "<div id=\"footer\">"
## [2147] "\t<div class=\"nav-primary\">"
## [2148] "\t\t<div class=\"width-base\">"
## [2149] "\t\t\t<ul class=\"socials\">"
## [2150] "\t\t\t\t<li class=\"facebook\"><a href=\"https://ja-jp.facebook.com/RakutenTravel\"><i class=\"icon-facebook\">facebook</i></a></li>"
## [2151] "\t\t\t\t<li class=\"twitter\"><a href=\"https://twitter.com/RakutenTravelJP\"><i class=\"icon-twitter\">twitter</i></a></li>"
## [2152] "\t\t\t</ul>"
## [2153] "\t\t\t<ul class=\"list-nav\">"
## [2154] "\t\t\t\t<li><a href=\"/sitemap/\">Site Map</a></li>"
## [2155] "\t\t\t\t<li><a href=\"http://privacy.rakuten.co.jp/english/\">Privacy Policy</a></li>"
## [2156] "\t\t\t\t<li><a href=\"/info/conditions/\">Terms and Conditions</a></li>"
## [2157] "\t\t\t\t<li><a href=\"/help/faq\">FAQ</a></li>"
## [2158] "\t\t\t\t<li><a href=\"http://global.rakuten.com/corp/\">About Us</a></li>"
## [2159] "\t\t\t</ul>"
## [2160] "\t\t\t<small class=\"copyright\">"
## [2161] "\t\t\t\tCopyright © "
## [2162] "\t\t\t\tRakuten, Inc. "
## [2163] "\t\t\t\tAll Rights Reserved.<!-- Version 1.1.6 -->"
## [2164] "\t\t\t</small>"
## [2165] "\t\t</div>"
## [2166] "\t</div>"
## [2167] "</div></div>"
## [2168] "\t<div id=\"search\" class=\"modal hide\">"
## [2169] "\t<div class=\"featureSearch modal-content\">"
## [2170] "\t\t<span data-role=\"data-dismiss\" class=\"icon-close\"></span>"
## [2171] "\t\t<div class=\"content\">"
## [2172] "\t\t\t<div class=\"lead\">Please enter your stay dates to see prices and availablity.</div>"
## [2173] "\t\t\t<div class=\"expand-fluid\">"
## [2174] "\t<div class=\"expand-nav center\">"
## [2175] "\t\t<span class=\"caret\"></span>"
## [2176] "\t</div>"
## [2177] "\t<div class=\"expand-content\">"
## [2178] "\t\t<form data-role=\"datepick\" class=\"form-vertical\" method=\"get\" name=\"searchForm2\">"
## [2179] "\t\t\t<div class=\"form-row hide\" name=\"divDistance\">"
## [2180] "\t\t\t\t<label class=\"label\"> "
## [2181] "\t\t\t\t\tDistance:</label> "
## [2182] "\t\t\t\t<select name=\"distance\" disabled=\"disabled\">"
## [2183] "\t\t\t\t\t<option value=\"2000\">2km</option>"
## [2184] "\t\t\t\t\t<option value=\"5000\">5km</option>"
## [2185] "\t\t\t\t\t<option value=\"10000\">10km</option>"
## [2186] "\t\t\t\t\t<option value=\"15000\">15km</option>"
## [2187] "\t\t\t\t\t<option value=\"20000\">20km</option>"
## [2188] "\t\t\t\t\t<option value=\"25000\">25km</option>"
## [2189] "\t\t\t\t\t<option value=\"30000\">30km</option>"
## [2190] "\t\t\t\t\t<option value=\"40000\">40km</option>"
## [2191] "\t\t\t\t\t<option value=\"50000\">50km</option>"
## [2192] "\t\t\t\t\t<option value=\"100000\">100km</option>"
## [2193] "\t\t\t\t</select>"
## [2194] "\t\t\t</div>"
## [2195] "\t\t\t<div class=\"form-row\">"
## [2196] "\t\t\t\t<label class=\"label\">"
## [2197] "\t\t\t\t\tCheck in:</label>"
## [2198] "\t\t\t\t<div data-role=\"datepickCheckin\" class=\"pick-date\" >"
## [2199] "\t\t\t\t\t<input name=\"checkin_date\" type=\"text\" value=\"\" data-date-format=\"mm/dd/yyyy\" readonly=\"readonly\" /> "
## [2200] "\t\t\t\t\t<span class=\"btn btn-date\">"
## [2201] "\t\t\t\t\t\t<i class=\"icon-calendar\"></i>"
## [2202] "\t\t\t\t\t</span>"
## [2203] "\t\t\t\t</div>"
## [2204] "\t <div class=\"panel-error panel-mini\" style=\"display:none\">"
## [2205] "\t <div class=\"panel-body\">"
## [2206] "\t\t\t\t\t\t<p></p>"
## [2207] "\t </div>"
## [2208] "\t </div>"
## [2209] "\t\t\t</div>"
## [2210] "\t\t\t<div class=\"form-row\">"
## [2211] "\t\t\t\t<label class=\"label\">Check out:</label>"
## [2212] "\t\t\t\t<div data-role=\"datepickCheckout\" class=\"pick-date\">"
## [2213] "\t\t\t\t\t<input name=\"checkout_date\" type=\"text\" value=\"\" data-date-format=\"mm/dd/yyyy\" readonly=\"readonly\" /> "
## [2214] "\t\t\t\t\t<span class=\"btn btn-date\"><i class=\"icon-calendar\"></i></span>"
## [2215] "\t\t\t\t</div>"
## [2216] "\t <div class=\"panel-error panel-mini\" style=\"display:none\">"
## [2217] "\t <div class=\"panel-body\">"
## [2218] "\t\t\t\t\t\t<p></p>"
## [2219] "\t </div>"
## [2220] "\t </div>"
## [2221] "\t\t\t</div>"
## [2222] "\t\t\t<div class=\"form-row\" name=\"divDateless\">"
## [2223] "\t\t\t\t<label class=\"label-check\" > "
## [2224] "\t\t\t\t<input value=\"1\" type=\"checkbox\" data-role=\"resetDate\"/> "
## [2225] "\t\t\t\tI don't have specific dates.</label>"
## [2226] "\t\t\t</div>"
## [2227] "\t\t\t<div class=\"search-options\">"
## [2228] "\t\t\t\t<div class=\"search-option\">"
## [2229] "\t\t\t\t\t<label class=\"label\">"
## [2230] "\t\t\t\t\tRoom:</label> "
## [2231] "\t\t\t\t\t<select name=\"rooms\" class=\"input-mini\">"
## [2232] "\t\t\t\t\t\t<option selected=\"selected\" value=\"1\">1</option>"
## [2233] "\t\t\t\t\t\t<option value=\"2\">2</option>"
## [2234] "\t\t\t\t\t\t<option value=\"3\">3</option>"
## [2235] "\t\t\t\t\t\t<option value=\"4\">4</option>"
## [2236] "\t\t\t\t\t\t<option value=\"5\">5</option>"
## [2237] "\t\t\t\t\t\t<option value=\"6\">6</option>"
## [2238] "\t\t\t\t\t\t<option value=\"7\">7</option>"
## [2239] "\t\t\t\t\t\t<option value=\"8\">8</option>"
## [2240] "\t\t\t\t\t\t<option value=\"9\">9</option>"
## [2241] "\t\t\t\t\t\t<option value=\"10\">10</option>"
## [2242] "\t\t\t\t\t</select>"
## [2243] "\t\t\t\t</div>"
## [2244] "\t\t\t\t<div class=\"search-option\">"
## [2245] "\t\t\t\t\t<label class=\"label\">"
## [2246] "\t\t\t\t\tAdults:</label> "
## [2247] "\t\t\t\t\t<select name=\"adults\" class=\"input-mini\">"
## [2248] "\t\t\t\t\t\t<option value=\"1\">1</option>"
## [2249] "\t\t\t\t\t\t<option value=\"2\" selected=\"selected\">2</option>"
## [2250] "\t\t\t\t\t\t<option value=\"3\">3</option>"
## [2251] "\t\t\t\t\t\t<option value=\"4\">4</option>"
## [2252] "\t\t\t\t\t\t<option value=\"5\">5</option>"
## [2253] "\t\t\t\t\t\t<option value=\"6\">6</option>"
## [2254] "\t\t\t\t\t\t<option value=\"7\">7</option>"
## [2255] "\t\t\t\t\t\t<option value=\"8\">8</option>"
## [2256] "\t\t\t\t\t\t<option value=\"9\">9</option>"
## [2257] "\t\t\t\t\t\t<option value=\"10\">10</option>"
## [2258] "\t\t\t\t\t</select>"
## [2259] "\t\t\t\t</div>"
## [2260] "\t\t\t\t<div class=\"search-option\">"
## [2261] "\t\t\t\t\t<label class=\"label\">Children:</label> "
## [2262] "\t\t\t\t\t<select name=\"children\" data-role=\"select-children\" class=\"input-mini\">"
## [2263] "\t\t\t\t\t\t<option selected=\"selected\">0</option>"
## [2264] "\t\t\t\t\t\t<option>1</option>"
## [2265] "\t\t\t\t\t\t<option>2</option>"
## [2266] "\t\t\t\t\t\t<option>3</option>"
## [2267] "\t\t\t\t\t\t<option>4</option>"
## [2268] "\t\t\t\t\t\t<option>5</option>"
## [2269] "\t\t\t\t\t\t<option>6</option>"
## [2270] "\t\t\t\t\t\t<option>7</option>"
## [2271] "\t\t\t\t\t\t<option>8</option>"
## [2272] "\t\t\t\t\t\t<option>9</option>"
## [2273] "\t\t\t\t\t\t<option>10</option>"
## [2274] "\t\t\t\t\t</select>"
## [2275] "\t\t\t\t</div>"
## [2276] "\t\t\t\t<div data-role=\"select-children-options\" class=\"hide\">"
## [2277] "\t\t\t\t\t<div class=\"bubble\">"
## [2278] "\t\t\t\t\t\t<label class=\"label\">Ages of children:</label>"
## [2279] "\t\t\t\t\t\t<ol class=\"list-ordered\">"
## [2280] "\t\t\t\t\t\t\t<li data-role=\"children-options\" class=\"search-options-2cols\">"
## [2281] "\t\t\t\t\t\t\t\t<div class=\"search-option-col3\">"
## [2282] "\t\t\t\t\t\t\t\t\t<select data-role=\"select-children-age\" class=\"input-mini\">"
## [2283] "\t\t\t\t\t\t\t\t\t\t<option selected=\"selected\">0</option>"
## [2284] "\t\t\t\t\t\t\t\t\t\t<option>1</option>"
## [2285] "\t\t\t\t\t\t\t\t\t\t<option>2</option>"
## [2286] "\t\t\t\t\t\t\t\t\t\t<option>3</option>"
## [2287] "\t\t\t\t\t\t\t\t\t\t<option>4</option>"
## [2288] "\t\t\t\t\t\t\t\t\t\t<option>5</option>"
## [2289] "\t\t\t\t\t\t\t\t\t\t<option>6</option>"
## [2290] "\t\t\t\t\t\t\t\t\t\t<option>7</option>"
## [2291] "\t\t\t\t\t\t\t\t\t\t<option>8</option>"
## [2292] "\t\t\t\t\t\t\t\t\t\t<option>9</option>"
## [2293] "\t\t\t\t\t\t\t\t\t\t<option>10</option>"
## [2294] "\t\t\t\t\t\t\t\t\t\t<option>11</option>"
## [2295] "\t\t\t\t\t\t\t\t\t</select>"
## [2296] "\t\t\t\t\t\t\t\t</div>"
## [2297] "\t\t\t\t\t\t\t\t<div class=\"search-option-col9\">"
## [2298] "\t\t\t\t\t\t\t\t\t<select data-role=\"select-children-beds\" class=\"input-medium\">"
## [2299] "\t\t\t\t\t\t\t\t\t\t<option value=\"1\" selected=\"selected\">"
## [2300] "\t\t\t\t\t\t\t\t\t\t\twith bed</option>"
## [2301] "\t\t\t\t\t\t\t\t\t\t<option value=\"0\">"
## [2302] "\t\t\t\t\t\t\t\t\t\t\twithout bed</option>"
## [2303] "\t\t\t\t\t\t\t\t\t</select>"
## [2304] "\t\t\t\t\t\t\t\t</div>"
## [2305] "\t\t\t\t\t\t\t</li>"
## [2306] "\t\t\t\t\t\t</ol>"
## [2307] "\t\t\t\t\t</div>"
## [2308] "\t\t\t\t</div>"
## [2309] "\t\t\t</div>"
## [2310] "\t\t\t<div class=\"center\">"
## [2311] "\t\t\t\t<button name=\"search\" class=\"btn btn-search btn-large btn-block\">"
## [2312] "\t\t\t\t\t<i class=\"icon-search\"></i>"
## [2313] "\t\t\t\t\tSearch</button>"
## [2314] "\t\t\t</div>"
## [2315] "\t\t\t <input name=\"searchKey\" type=\"hidden\" />"
## [2316] "\t\t\t <input name=\"id_dest\" type=\"hidden\" />"
## [2317] "\t\t\t <input name=\"search_type\" type=\"hidden\" />"
## [2318] "\t\t\t <input name=\"destEnFullName\" type=\"hidden\" />"
## [2319] "\t\t\t <!-- <input name=\"childBeds\" type=\"hidden\" />"
## [2320] "\t\t\t <input name=\"childAges\" type=\"hidden\" /> -->"
## [2321] "\t\t\t <input name=\"dateless\" type=\"hidden\" value=\"0\"/>"
## [2322] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [2323] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [2324] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [2325] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [2326] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [2327] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [2328] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [2329] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [2330] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [2331] "\t\t\t <input type=\"hidden\" name=\"c_ages\" value=\"0\" disabled=\"disabled\" />"
## [2332] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [2333] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [2334] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [2335] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [2336] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [2337] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [2338] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [2339] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [2340] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [2341] "\t\t\t <input type=\"hidden\" name=\"c_beds\" value=\"0\" disabled=\"disabled\" />"
## [2342] "\t\t\t <input type=\"hidden\" name=\"id_plan\" />"
## [2343] "\t\t\t <input type=\"hidden\" name=\"id_room\" />"
## [2344] "\t\t</form>"
## [2345] "\t</div>"
## [2346] "</div></div>"
## [2347] "\t</div>"
## [2348] "</div>"
## [2349] "<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/share/js/jquery-1.10.2.min.js?version=1.0.5\"></script>"
## [2350] "<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/share/js/jquery.cookie.js?version=1.0.5\"></script>"
## [2351] "<script type=\"text/javascript\">"
## [2352] "var listUrl = '/hotellist' + \"/\";"
## [2353] "var spotUrl = '/spot' + \"/\";"
## [2354] "var hotelUrl = '/hotel' + \"/\";"
## [2355] "var hostname = window.location.hostname; // host"
## [2356] "var domain = hostname.substr(hostname.lastIndexOf(\".\") + 1 ,hostname.length); // domain"
## [2357] "$.searchCondition ={};"
## [2358] "$.searchParams='search_type=area&id_dest=10868&destEnFullName=Japan-Hokkaido-Noboribetsu&searchKey=Noboribetsu, Hokkaido, Japan';"
## [2359] "$.hasQueryString = false;"
## [2360] "</script>"
## [2361] "<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/share/js/common-plugins.min.js?version=1.0.5\"></script>"
## [2362] "<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/ghotel/js/jquery.validate.min.js?version=1.0.5\"></script>"
## [2363] "<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/ghotel/js/additional-methods.min.js?version=1.0.5\"></script>"
## [2364] "<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/ghotel/js/searchBox.js?version=1.0.13\"></script>"
## [2365] "<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/ghotel/js/searchBoxMessage.js?version=1.0.5\"></script>"
## [2366] "<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/ghotel/js/suggest.js?version=1.0.8\"></script>"
## [2367] "<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/ghotel/js/suggest-data_en_US.js?version=1.0.6\"></script>"
## [2368] "<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/ghotel/js/multiMap.js?version=1.0.7\"></script>"
## [2369] "<script src=\"http://maps.google.com/maps/api/js?version=1.0.5&sensor=false&language=en_US\"></script>"
## [2370] "<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/ghotel/js/hotelPage.js?version=1.0.14\"></script>"
## [2371] "\t<script type=\"text/javascript\">"
## [2372] "\t \tvar gmap;"
## [2373] "\t\t$(\"span[data-target='#map']\").one('click',function(){"
## [2374] "\t\t\thotels = [];"
## [2375] "\t\t\t<!-- hotels[0] = {index:0,lat:42.49197094,lon:141.1420448,name:\"Noboribetsu Onsen Noboribetsu Grand Hotel\"}; -->"
## [2376] "\t\t\t<!-- gmap = new MultiMap({id:\"map\",lat:42.49197094,lon:141.1420448); -->"
## [2377] "\t\t\thotels[0] = {index:0,lat:42.49197094,lon:141.1420448,name:\"Noboribetsu Onsen Noboribetsu Grand Hotel\"};"
## [2378] "\t \t\tgmap = new MultiMap({id:\"map\",lat:hotels[0].lat,lon:hotels[0].lon});"
## [2379] "\t \t \tgmap.loadMarkers(hotels);"
## [2380] "\t\t});"
## [2381] "\t</script>"
## [2382] "\t<!-- SiteCatalyst(start) -->"
## [2383] "\t<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/share/sc/s_accountSetting.js\"></script>"
## [2384] "\t<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/share/sc/s_codeCommon.js\"></script>"
## [2385] "\t<script type=\"text/javascript\" src=\"http://img.travel.rakuten.co.jp/m17n/share/sc/s_customTracking.js\"></script>"
## [2386] "\t<script type=\"text/javascript\">"
## [2387] "\t\t//Input fixed value instead of variables"
## [2388] "\t\tvar searchCond =$.searchCondition;"
## [2389] "\t\tfunction getDate(dte){"
## [2390] "\t\t\tif ((domain ==\"cn\") || (domain == \"kr\") || (domain == \"hk\")|| (domain == \"tw\")) {"
## [2391] "\t\t\t \tvar dr = new RegExp(\"-\",\"g\");"
## [2392] "\t\t\t \tdte.replace(dr,\"/\");"
## [2393] "\t\t\t}"
## [2394] "\t\t\treturn new Date(dte);"
## [2395] "\t\t}"
## [2396] "\t\tfunction changeDateFormat(dte) {"
## [2397] "\t\t\tif ((domain ==\"cn\") || (domain == \"kr\") || (domain == \"hk\")|| (domain == \"tw\")) {"
## [2398] "\t\t\t \tvar dr = new RegExp(\"-\",\"g\");"
## [2399] "\t\t\t \tdte.replace(dr,\"\");"
## [2400] "\t\t\t}else {"
## [2401] "\t\t\t\tvar dteArr = dte.split(\"/\");"
## [2402] "\t\t\t\tdte =dteArr[2]+ dteArr[0]+dteArr[1];"
## [2403] "\t\t\t}"
## [2404] "\t\t\treturn dte;"
## [2405] "\t\t}"
## [2406] "\t\t"
## [2407] "\t\ts.pageName=\"hotel:top\";"
## [2408] "\t\tif (\"false\" == \"true\") {"
## [2409] "\t\t\ts.pageName += \"_dated\";"
## [2410] "\t\t}"
## [2411] "\t\ts.channel=\"hotel\";"
## [2412] "\t\ts.events=\"prodView\";"
## [2413] "\t\t//s.eVar12=s.eVar13=s.prop6=\"hotel_no\";//e.g) \"31571\""
## [2414] "\t\ts.eVar12=s.eVar13=s.prop6=\"39175\";//e.g) \"31571\""
## [2415] "\t\t"
## [2416] "\t\tif ((searchCond.checkin_date !=\"\") "
## [2417] "\t\t\t\t&& (searchCond.checkin_date !=undefined) "
## [2418] "\t\t\t\t&& (searchCond.checkin_date != null)"
## [2419] "\t\t\t \t&& (searchCond.checkout_date !=\"\") "
## [2420] "\t\t\t \t&& (searchCond.checkout_date !=undefined) "
## [2421] "\t\t\t\t&& (searchCond.checkout_date != null)){"
## [2422] "\t\t\tvar check_in = getDate(searchCond.checkin_date);"
## [2423] "\t\t\tvar check_out = getDate(searchCond.checkout_date);"
## [2424] "\t\t\tvar now_date = new Date();"
## [2425] "\t\t\tnow_date.setHours(0);"
## [2426] "\t\t\tnow_date.setMinutes(0);"
## [2427] "\t\t\tnow_date.setSeconds(0);"
## [2428] "\t\t\tnow_date.setMilliseconds(0);"
## [2429] "\t\t\tinterval1= (check_out -check_in)/(60*60*24*1000);"
## [2430] "\t\t\tinterval2=(check_in -now_date)/(60*60*24*1000);"
## [2431] "\t\t\t"
## [2432] "\t\t\t// s.eVar14= \"checkin_date:checkout_date\"; //e.g) \"20140619:20140620\""
## [2433] "\t\t\ts.eVar14= changeDateFormat(searchCond.checkin_date) + \":\" + changeDateFormat(searchCond.checkout_date); "
## [2434] "\t\t\ts.eVar17 = interval2;"
## [2435] "\t\t\ts.eVar18 = interval1;"
## [2436] "\t\t} else {"
## [2437] "\t\t\ts.eVar14=\"\";"
## [2438] "\t\t\ts.eVar17 = \"\";"
## [2439] "\t\t\ts.eVar18 = \"\";"
## [2440] "\t\t}"
## [2441] "\t\t"
## [2442] "\t\tvar adult_count =0;"
## [2443] "\t\tvar child_count =0;"
## [2444] "\t\tif ((searchCond.adults !=\"\") && (searchCond.adults != undefined) && (searchCond.adults != null)) {"
## [2445] "\t\t\tadult_count =parseInt(searchCond.adults,10);"
## [2446] "\t\t}"
## [2447] "\t\tif ((searchCond.children !=\"\") && (searchCond.children != undefined) && (searchCond.children != null)) {"
## [2448] "\t\t\tchild_count =parseInt(searchCond.children,10);"
## [2449] "\t\t}"
## [2450] "\t\tvar total_count = adult_count + child_count;"
## [2451] "\t\ts.eVar19=\"\" + adult_count + \":\" + child_count + \":\" + total_count +\"\";//e.g) \"2:1:3\""
## [2452] "\t\t// s.eVar19=\"adults:children:total\";//e.g) \"2:1:3\""
## [2453] "\t\tvar error_flag = false;"
## [2454] "\t\tif (error_flag) {"
## [2455] "\t\t\ts.prop7=\"1\"; //e.g) succeed to search -> \"0\", fail to search -> \"1\""
## [2456] "\t\t}else {"
## [2457] "\t\t\ts.prop7=\"0\"; //e.g) succeed to search -> \"0\", fail to search -> \"1\""
## [2458] "\t\t}"
## [2459] "\t\t"
## [2460] "\t\t//s.prop9=\"sort_no\"; //e.g) If sort is \"Guest Rating - high to low\", sort_no is \"1\"."
## [2461] "\t\ts.prop9 = 3;"
## [2462] "\t\t//s.prop10=\"page_no\""
## [2463] "\t\t\xc2\xa0"
## [2464] "\t\ttry {var s_code=s.t();if(s_code)document.write(s_code);} catch(e) {rakutenSC.log(e);}"
## [2465] "\t</script>"
## [2466] "\t<!-- SiteCatalyst(end) -->"
## [2467] "</body>"
## [2468] "</body>"
## [2469] "</html>"
使用XML Parse 網頁
library(XML)
url = 'http://travel.rakuten.com/hotel/Japan-Hokkaido-Noboribetsu-Noboribetsu_Onsen_Noboribetsu_Grand_Hotel/39175/'
html = htmlTreeParse(url, useInternalNodes=T)
xpathSApply(html, "//title", xmlValue)
## [1] "Noboribetsu Onsen Noboribetsu Grand Hotel - Rakuten Travel"
使用httr 抓取網頁內容
library(httr)
url = 'http://travel.rakuten.com/hotel/Japan-Hokkaido-Noboribetsu-Noboribetsu_Onsen_Noboribetsu_Grand_Hotel/39175/'
htmlPage = GET(url)
content = content(htmlPage, as="text")
html = htmlParse(content, asText=TRUE)
xpathSApply(html, "//title", xmlValue)
## [1] "Noboribetsu Onsen Noboribetsu Grand Hotel - Rakuten Travel"
連結Facebook
fb_connect <- function( path = "me", access_token = token, options){
if( !missing(options) ){
options <- sprintf( "?%s", paste( names(options), "=", unlist(options), collapse = "&", sep = "" ) )
options <- gsub(",", "%2C", options)
url <- sprintf( "https://graph.facebook.com/%s%s&access_token=%s", path, options, access_token )
} else {
url <- sprintf( "https://graph.facebook.com/%s?access_token=%s", path, access_token )
}
data <- getURL( url, ssl.verifypeer = FALSE )
fromJSON( data )
}
使用 rjdbc
library(RJDBC)
drv <- JDBC("com.microsoft.sqlserver.jdbc.SQLServerDriver", "/etc/sqljdbc_2.0/sqljdbc4.jar")
conn <- dbConnect(drv, "jdbc:sqlserver://serverName", "userID", "password")
sqlText <- paste("SELECT * FROM myTable", sep="")
queryResults <- dbGetQuery(conn, sqlText)
sub 和 gsub
sub("_", "", "123_456_789" )
## [1] "123456_789"
gsub("_", "", "123_456_789" )
## [1] "123456789"
資料擷取 (Grep)
v = c("Brian", "Brain", "Cat")
grep("B", v)
## [1] 1 2
table(grepl("B",v))
##
## FALSE TRUE
## 1 2
字串函式應用
library(stringr)
nchar("hello world")
## [1] 11
substr("hello world", 1,8)
## [1] "hello wo"
paste("Hello", "World")
## [1] "Hello World"
paste0("Hello", "World")
## [1] "HelloWorld"
str_trim("Hello ")
## [1] "Hello"
搭配grepl
grepl("a+", c("abc", "def", "cba a", "aa"), perl=TRUE)
## [1] TRUE FALSE TRUE TRUE
sub 及 gsub
sub("(a+)", "z\\1z", c("abc", "def", "cba a", "aa"), perl=TRUE)
## [1] "zazbc" "def" "cbzaz a" "zaaz"
gsub("(a+)", "z\\1z", c("abc", "def", "cba a", "aa"), perl=TRUE)
## [1] "zazbc" "def" "cbzaz zaz" "zaaz"
搭配regexpr
x <- c("abca", "deadfadff", "cbcbb", "aa")
m <- regexpr("a+", x, perl=TRUE)
regmatches(x, m)
## [1] "a" "a" "aa"
EMAIL比對
emails = c("larry@gmail.com", "larry-sally@sally.com", "larry@sally.larry.com")
regex = "^[[:alnum:].-]+@[[:alnum:].-]+$"
str_match(emails, regex)
## [,1]
## [1,] "larry@gmail.com"
## [2,] "larry-sally@sally.com"
## [3,] "larry@sally.larry.com"
讀進資料
stock_data = read.xlsx(header = TRUE, file= '2330_2014.xlsx', sheetIndex = 1)
複習資料篩選
which(stock_data$Volume ==0)
stock_data[which(stock_data$Volume ==0),]$Volume = NA
資料篩選
stock_data[,2]
stock_data[1,2]
stock_data[1:3,"Date"]
stock_data[1:3,c("Date", "Close")]
條件篩選
stock_data[stock_data$Open > 105 & stock_data$Open < 110,]
資料排序 (sort)
sort(stock_data$Open)
sort(stock_data$Open, decreasing=TRUE)
sort(stock_data$Volume, na.last=TRUE)
資料排序 (order)
stock_data[order(stock_data$Open),]
stock_data[order(stock_data$Open, stock_data$Close),]
使用plyr 做資料排序
library(plyr)
arrange(stock_data, Open)
新增列與行
#新增行
stock_data$new_var = NA
stock_data = cbind(stock_data, NA)
stock_data = cbind(stock_data, "test")
#新增列
stock_data = rbind(stock_data, NA)
stock_data = rbind(stock_data, c('2014-01-01', 123,123,123,123,123,123,NA,"test"))
建立漲跌標籤
stock_data$tf = ifelse(stock_data$Close - stock_data$Open > 0, TRUE, FALSE)
table(stock_data$tf)
類別資料
stock_data$rise_down_range = cut(stock_data$Close - stock_data$Open, breaks=quantile(stock_data$Close - stock_data$Open))
table(stock_data$rise_down_range)
日期函式
x <- as.Date("2014-08-18")
class(x)
## [1] "Date"
unclass(x)
## [1] 16300
y <- as.Date("1970-01-01")
unclass(y)
## [1] 0
時間處理
#印出系統時間
x <- Sys.time()
x
## [1] "2014-08-18 00:31:07 CST"
#時間轉換
p <- as.POSIXlt(x)
unclass(p)
## $sec
## [1] 7.534
##
## $min
## [1] 31
##
## $hour
## [1] 0
##
## $mday
## [1] 18
##
## $mon
## [1] 7
##
## $year
## [1] 114
##
## $wday
## [1] 1
##
## $yday
## [1] 229
##
## $isdst
## [1] 0
##
## $zone
## [1] "CST"
##
## $gmtoff
## [1] 28800
##
## attr(,"tzone")
## [1] "" "CST" "CDT"
p$sec
## [1] 7.534
p1 <- as.POSIXct(x)
unclass(p1)
## [1] 1.408e+09
轉換字串為時間 (strptime)
ds <- c("August 18, 2014 12:00")
x <- strptime(ds, "%B %d, %Y %H:%M")
x
## [1] NA
時間運算
x <- strptime(ds, "%B %d, %Y %H:%M")
x1 <- as.POSIXlt(as.Date('2014-08-15'))
x - x1
## Time difference of NA secs
lapply
x = list(c(1,2,3,4), c(5,6,7,8))
lapply(x, sum)
## [[1]]
## [1] 10
##
## [[2]]
## [1] 26
套用在陣列清單中
m1 = matrix(1:4, byrow=TRUE, nrow=2)
m2 = matrix(5:8, byrow=TRUE, nrow=2)
li = list(m1, m2)
lapply(li, mean)
## [[1]]
## [1] 2.5
##
## [[2]]
## [1] 6.5
串接匿名函式
lapply(li,function(e) e[1,])
## [[1]]
## [1] 1 2
##
## [[2]]
## [1] 5 6
sapply
x = list(c(1,2,3,4), c(5,6,7,8))
sapply(x, sum)
## [1] 10 26
x = list(c(1,2,3,4), c(5,6,7,8))
lapply(x, sum)
## [[1]]
## [1] 10
##
## [[2]]
## [1] 26
更多sapply
m1 = matrix(1:4, byrow=TRUE, nrow=2)
m2 = matrix(5:8, byrow=TRUE, nrow=2)
li = list(m1, m2)
sapply(li, mean)
## [1] 2.5 6.5
sapply(li,function(e) e[1,])
## [,1] [,2]
## [1,] 1 5
## [2,] 2 6
使用 Apply
m = matrix(1:4, byrow=TRUE, nrow=2)
apply(m, 1, sum)
## [1] 3 7
apply(m, 2, sum)
## [1] 4 6
tapply
x = c(80,70,59,88,72,57)
t = c(1,1,2,1,1,2)
tapply(x,t, mean)
## 1 2
## 77.5 58.0
使用 tapply 進行分組計算
data(iris)
tapply(iris$Sepal.Length, iris$Species, mean)
## setosa versicolor virginica
## 5.006 5.936 6.588
mapply
mapply(rep, 1:3, 1:3)
## [[1]]
## [1] 1
##
## [[2]]
## [1] 2 2
##
## [[3]]
## [1] 3 3 3
資料合併 (arrange)
library(plyr)
df1 = data.frame(id = 1:3, x= rep(1,3))
df2 = data.frame(id = 1:3, y= rnorm(3))
arrange(join(df1,df2), id)
## Joining by: id
## id x y
## 1 1 1 -1.633
## 2 2 1 -0.601
## 3 3 1 -1.118
資料合併 (join_all)
a = list(df1,df2)
join_all(a)
## Joining by: id
## id x y
## 1 1 1 -1.633
## 2 2 1 -0.601
## 3 3 1 -1.118
資料合併 (merge)
merge(df1,df2, by.x="id", by.y="id", all=TRUE)
## id x y
## 1 1 1 -1.633
## 2 2 1 -0.601
## 3 3 1 -1.118