Skip to content

Commit

Permalink
add pdf analysis of all test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tushar98644 committed Mar 28, 2024
1 parent c5f6e0e commit 85a4e1b
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added docs/easy-analysis.pdf
Binary file not shown.
Binary file added docs/hard-analysis.pdf
Binary file not shown.
Binary file added docs/medium-analysis.pdf
Binary file not shown.
Binary file added output/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion output/easy/analysis.Rmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Easy Test Analysis"
output: github_document
output: pdf_document
---

## Introduction
Expand Down
2 changes: 1 addition & 1 deletion output/hard/analysis.Rmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Hard Test Analysis"
output: github_document
output: pdf_document
---

## Introduction
Expand Down
10 changes: 5 additions & 5 deletions output/medium/analysis.Rmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Medium Test Analysis"
output: github_document
output: pdf_document
---

## Introduction
Expand Down Expand Up @@ -108,9 +108,9 @@ tu_mama

- **xmlChildren(movies)** retrieves the child nodes of the node "movies".

- **xmlChildren(movies)\[\[1\]\]** accesses the first movie node from the child nodes of "movies".
- **xmlChildren(movies)[[1]]** accesses the first movie node from the child nodes of "movies".

- **xmlChildren(movies)\[\[2\]\]** accesses the second movie node from the child nodes of "movies".
- **xmlChildren(movies)[[2]]** accesses the second movie node from the child nodes of "movies".

### [Section 3: Inspecting first node]{.underline}

Expand Down Expand Up @@ -167,7 +167,7 @@ xmlValue(title1)

- **xmlChildren(good_will)** retrieves the child nodes of the 'good_will' node.

- **xmlChildren(good_will)\[\["title"\]\]** accesses the 'title' node within the 'good_will' node.
- **xmlChildren(good_will)[["title"]]** accesses the 'title' node within the 'good_will' node.

- **xmlChildren(title1)** accesses the child nodes of the 'title1' node

Expand All @@ -190,7 +190,7 @@ xmlValue(dir1)

**Explanation**

- **xmlChildren(good_will)\[\["director"\]\]** accesses the 'director' node within the 'good_will' node.
- **xmlChildren(good_will)[["director"]]** accesses the 'director' node within the 'good_will' node.

- **xmlChildren(dir1)** accesses the child nodes of the 'dir1' node.

Expand Down

0 comments on commit 85a4e1b

Please sign in to comment.