-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbot.cartbis.R
69 lines (57 loc) · 1.88 KB
/
bot.cartbis.R
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
####################################
# cartBis (CART) #
###################################
####################
### Initialisation
####################
# Chargement de la biblioth?que
library (e1071)
library("fdm2id")
source("addData.r")
# Chargement des données
awele.data = read.table ("awele.data", sep = ",", header = T)
# On crée la liste des objets dataSupp
listCart = list(sum1ou2, somme, vide);
######
# Contre cart 1 :
# sum1ou2, vide, posMax, bidoua : cart 1
# sum1ou2 : cartBis ( 26 // 23)
# vide : egalite
# posMax : egalite
# bidoua : cart1
#nbVidesAvantPleine : egalite
# somme : cartBis
# unTour : egalite
# sum1ou2, somme : cartBis
#####################
### Création du modèle
#####################
cartBis.create.model = function(dataset)
{
#On ajoute les données
dataset = addData.completeData(dataset, listCart)
# On calcule le décalage
decal = addData.getDecalage(listCart)
selection = dataset [dataset [, 14+decal] == "G", ]
result = splitdata(dataset = selection ,target = (13+decal):(14+decal), seed=0)
tunecontrole=tune.control(sampling="bootstrap", nboot=20, boot.size=1)
model = tune.rpart(C~.,cbind.data.frame(Classe=result$train.y[1], result$train.x), minsplit=1,cp=2^(-5:1), tunecontrol=tunecontrole)$best.model
return(model)
}
cartBis.model = cartBis.create.model (awele.data)
#####################
### Execution
#####################
cartBis.exec = function (awele, model)
{
g = graines.matrix(awele)
g = addData.completeData(g, listCart)
colnames(g)[1:12] = c(paste("J",1:6,sep=""),paste("A",1:6,sep=""))
#type = prob, conseillé par le prof
prediction = predict(model, data.frame(g),type="class")
monretour = data.frame(matrix(data=0, ncol = 6, nrow = 1))
colnames(monretour) = levels(prediction)
monretour[c(prediction[1])] =1
return (monretour)
}
cartBis = function (awele) return (cartBis.exec (awele, cartBis.model))