-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample.m
More file actions
27 lines (23 loc) · 801 Bytes
/
Copy pathExample.m
File metadata and controls
27 lines (23 loc) · 801 Bytes
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
BeginPackage["Example`"];
paperIS =
{
{ 3, 2, 1, 0}
, { Missing[], 2, Missing[], 0}
, { 3, 3, 1, Missing[]}
, { 2, 2, Missing[], 0}
, { 3, Missing[], Missing[], 3}
, { Missing[], 2, 2, Missing[]}
, { 3, 2, 3, 3}
, { 2, Missing[], 2, Missing[]}
}
Table1 =
{
{ "female", 2, "yes", "yes"}
, { Missing[], Missing[], "no", "no"}
, { "male", 3, Missing[], "yes"}
, { "female", Missing[], "yes", "no"}
, { Missing[], 2, "no", "no"}
, { "male", Missing[], "no", "no"}
, { Missing[], 3, "no", "no"}
}
EndPackage[];