0
Это вопрос программирования. Я не понимаю, как распечатать 1 элемент вектора. Мой код приведен ниже:R print один элемент вектора
# creating a range of values to test for accuracy
thresh=seq(0,1,by=0.05)
acc = matrix(0,1,20)
# computing accuracy for different threshold values from 0 to 1 step by 0.05
for (i in 1:21){
matrix = confusion.matrix(obs,pred,threshold=thresh[i])
acc[i]=(matrix[1,1]+matrix[2,2])/nrow(test)
acc[i]}
max(acc)
library(nnet)
which.is.max(acc)
acc
#Q how can I print only thresh[12] the first max(acc)?
there may be more than one thresh with the max(acc).
print(thresh)
????
простой вопрос, простой ответ. –