You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: _site/search.json
+45-38
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,52 @@
2
2
{
3
3
"objectID": "index.html",
4
4
"href": "index.html",
5
-
"title": "rforhta",
5
+
"title": "R for Health Technology Assesment",
6
6
"section": "",
7
-
"text": "This is a Quarto website.\nTo learn more about Quarto websites visit https://quarto.org/docs/websites.\n\n1 + 1\n\n[1] 2",
7
+
"text": "This is a Quarto website.\nQuarto allows us to display code and its output\nTo learn more about Quarto websites visit https://quarto.org/docs/websites.\n\n1 + 1\n\n[1] 2\n\n\nwhich wont tell automatically install the package if it is not installed for us.\nAn example is how to plot some data, fitted with a linear model and coloured by group\n\nggplot(\n data = penguins,\n mapping = aes(x = flipper_length_mm, y = body_mass_g)\n) +\n geom_point(mapping = aes(color = species)) +\n geom_smooth(method = \"lm\")\n\n`geom_smooth()` using formula = 'y ~ x'\n\n\nWarning: Removed 2 rows containing non-finite outside the scale range\n(`stat_smooth()`).\n\n\nWarning: Removed 2 rows containing missing values or values outside the scale range\n(`geom_point()`).",
"text": "git is a difficult but extremely helpful tool for those of us that work with data.\ngit is a tool that tracks changes to your files and enables you to share those changes with others.\nThese git configured set of files are called repositories or repos and are organised in a structured way.\nA rather large caveat is that:\n\nit is very much not advised to store data in these projects on git\nwhen working in groups, it is best to store data elsewhere and have scripts that interact with your local copy of the data\n\nIn my work, i use git to store text based code as a backup in case i make breaking changes to my analytical workflow that result in different results / different subsets of data etc.\nabcdefg",
46
+
"crumbs": [
47
+
"Basics",
48
+
"Git Basics"
49
+
]
50
+
},
12
51
{
13
52
"objectID": "content/installr.html",
14
53
"href": "content/installr.html",
@@ -43,42 +82,10 @@
43
82
]
44
83
},
45
84
{
46
-
"objectID": "content/git.html",
47
-
"href": "content/git.html",
48
-
"title": "git and github",
85
+
"objectID": "content/ons_nomis.html",
86
+
"href": "content/ons_nomis.html",
87
+
"title": "ONS NOMIS",
49
88
"section": "",
50
-
"text": "git is a difficult but extremely helpful tool for those of us that work with data.\ngit is a tool that tracks changes to your files and enables you to share those changes with others.\nThese git configured set of files are called repositories or repos and are organised in a structured way.\nA rather large caveat is that:\n\nit is very much not advised to store data in these projects on git\nwhen working in groups, it is best to store data elsewhere and have scripts that interact with your local copy of the data\n\nIn my work, i use git to store text based code as a backup in case i make breaking changes to my analytical workflow that result in different results / different subsets of data etc.\nabcdefg",
0 commit comments