Skip to content

Commit 2d3d47c

Browse files
Fixed grammatical errors in original README.Rmd
1 parent 6a36e73 commit 2d3d47c

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div style="font-size: 1em;">
22

3-
Last updated on 2021-12-03 10:50:49
3+
Last updated on 2021-12-06 09:33:01
44

55
</div>
66

@@ -110,13 +110,13 @@ model.
110110
<td style="text-align:left;width: 15em; "> guid </td>
111111
</tr>
112112
<tr>
113-
<td style="text-align:left;width: 15em; "> company_guide </td>
113+
<td style="text-align:left;width: 15em; "> company_guid </td>
114114
</tr>
115115
<tr>
116-
<td style="text-align:left;width: 15em; "> position_guide </td>
116+
<td style="text-align:left;width: 15em; "> position_guid </td>
117117
</tr>
118118
<tr>
119-
<td style="text-align:left;width: 15em; "> employee_guide </td>
119+
<td style="text-align:left;width: 15em; "> employee_guid </td>
120120
</tr>
121121
</tbody>
122122
</table>
@@ -175,9 +175,8 @@ A sample input file is provided for you. It can be downloaded directly
175175
from the [data
176176
subdirectory](./data/010_Paylocity_sample_payload_for_DB_loading.txt) of
177177
this repo, and it is also available in the Appendix (see
178-
[below](#31-sample-input-database-payload-file)). When processing
179-
this file, your code should print an output similar to what is shown
180-
here.
178+
[below](#31-sample-input-database-payload-file)). When processing this
179+
file, your code should print an output similar to what is shown here.
181180

182181
------------------------------------------------------------------------
183182

code/RMarkdown/README.Rmd

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,17 +68,18 @@ Shown below are three tables from a relational database conceptual data model.
6868
library(kableExtra)
6969
library(purrr)
7070
71-
dbTables <- vector("list", length = 0)
71+
dbTables <- vector("list", length = 3)
7272
73+
names(dbTables) <- c("Employee", "Company", "Job")
74+
7375
dbTables[["Employee"]] <- data.frame(Employee = c("guid", "status", "state"))
7476
7577
dbTables[["Company"]] <- data.frame(Company = c("guid", "name"))
7678
77-
dbTables[["Job"]] <- data.frame(Job = c("guid", "company_guide", "position_guide", "employee_guide"))
79+
dbTables[["Job"]] <- data.frame(Job = c("guid", "company_guid", "position_guid", "employee_guid"))
7880
7981
htmlTables <- dbTables %>%
8082
map(function(tbl) {
81-
8283
tbl %>% kableExtra::kable() %>%
8384
row_spec(0, font_size = 20, color = "white", background = "gray") %>%
8485
column_spec(1, width = "15em") %>%
@@ -136,7 +137,7 @@ You're tasked with writing a Python script, which must do the following items.
136137

137138
**NOTE**: You are free to add additional columns to your models as you see fit for the purpose of testing your application.
138139

139-
A sample input file is provided for you. It can be downloaded directly from the [data subdirectory](./data/010_Paylocity_sample_payload_for_DB_loading.txt) of this repo, and it is also available in the Appendix &lpar;see [below](#31-sample-input-database-payload-file), below&rpar; When processing this file, your code should print an output similar to what is shown here.
140+
A sample input file is provided for you. It can be downloaded directly from the [data subdirectory](./data/010_Paylocity_sample_payload_for_DB_loading.txt) of this repo, and it is also available in the Appendix &lpar;see [below](#31-sample-input-database-payload-file)&rpar;. When processing this file, your code should print an output similar to what is shown here.
140141

141142
------------------------------------------------------------------------
142143

0 commit comments

Comments
 (0)