R ile Web Kazıma
Timo Grossenbacher
Instructor
h1 {
color: red;
}
p {
font-style: italic;
}
<html>
<body>
<h1>Web Kazımaya Hoş Geldiniz!</h1>
<p>İster R, ister Python, ister
başka bir dil —
kazıma eğlencelidir!</p>
</body>
</html>
h1 {
color: green;
}
p {
font-style: italic;
}
h1, p {
font-family: sans-serif;
}
...
<h1>Başka bir CSS örneği.</h1>
<p>Bazı metinler.</p>
...

html %>% html_elements('h1, p')
{xml_nodeset (2)}
[1] <h1> Başka bir CSS ör...
[2] <p>Bazı metinler</p>
type { key: value; }html %>% html_elements('type') # ör. 'h1' veya 'a' veya 'span'
type1, type2 { key: value; }html %>% html_elements('type1, type2')
* { key: value; }html %>% html_elements('*')
R ile Web Kazıma