-
Notifications
You must be signed in to change notification settings - Fork 0
/
DivisionOfWork_Judith-Alex.Rmd
54 lines (43 loc) · 1.25 KB
/
DivisionOfWork_Judith-Alex.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
title: "Dividing R functions"
author: "Judith Neve"
date: "25/11/2021"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(CTmeta)
library(ChiBarSq.DiffTest)
library(goric)
```
# Installing the packages
```{r}
functions.to.check <- c(ls("package:CTmeta"), ls("package:ChiBarSq.DiffTest"), "restriktor::goric")
```
# Division of work
```{r}
Judith <- functions.to.check[c(1:13, 28)]
Alex <- functions.to.check[c(14:27)]
Judith
Alex
```
# Done
```{r}
Judith <- Judith[Judith != "CTmeta"]
Judith <- Judith[Judith != "coef.CTmeta"]
# no need to actually look at coef.CTmeta, this just makes coef() work
Judith <- Judith[Judith != "Area"]
Judith <- Judith[Judith != "ChecksCTM"]
Judith <- Judith[Judith != "CTMparam"]
Judith <- Judith[Judith != "DiagDeltaT"]
Judith <- Judith[Judith != "Gamma.fromCTM"]
Judith <- Judith[Judith != "Gamma.fromVAR"]
Judith <- Judith[Judith != "MaxDeltaT"]
Judith <- Judith[Judith != "myData"]
Judith <- Judith[Judith != "myDrift"]
Judith <- Judith[Judith != "myGamma"]
# no need to look at these, they are example datasets
Judith
```
eigen(summary(Phi)$DRIFT)$val -- for PhiPlot function, if multiple plots are produced in one plot because Phi does not have a single solution
go back to CTmeta