-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharff.code-snippets
More file actions
42 lines (42 loc) · 1.26 KB
/
Copy patharff.code-snippets
File metadata and controls
42 lines (42 loc) · 1.26 KB
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
{
"ARFF Relation": {
"prefix": ["@relation", "relation"],
"body": [
"% Define el nombre del dataset",
"@relation ${1:nombre_dataset}",
"",
"$0"
],
"description": "Define el nombre del dataset ARFF"
},
"ARFF Attribute Numeric": {
"prefix": ["@attribute-numeric", "attr-num"],
"body": [
"% Atributo numérico: ${2:descripción}",
"% Rango esperado: ${3:min}-${4:max}",
"@attribute ${1:nombre} numeric",
"$0"
],
"description": "Define un atributo numérico"
},
"ARFF Attribute Nominal": {
"prefix": ["@attribute-nominal", "attr-nom"],
"body": [
"% Atributo nominal: ${2:descripción}",
"% Valores posibles: ${3:valores}",
"@attribute ${1:nombre} {${3:valor1,valor2}}",
"$0"
],
"description": "Define un atributo nominal/categórico"
},
"ARFF Data Section": {
"prefix": ["@data", "data"],
"body": [
"@data",
"% Formato: ${1:descripción de formato}",
"${2:valor1},${3:valor2},${4:valor3}",
"$0"
],
"description": "Inicia la sección de datos"
}
}