This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Idade, H, J, R, B, C, Classe | |
| 20,0,0,1,1,0,1 | |
| 22,0,1,0,1,0,0 | |
| 30,0,1,0,0,1,0 | |
| 31,0,0,1,0,1,1 | |
| 29,1,0,0,0,1,1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/python | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| from itertools import cycle | |
| from sklearn import tree | |
| from sklearn import svm, datasets | |
| from sklearn.metrics import roc_curve, auc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ( NAMESPACE="staging"; for i in $(kubectl top pods -n $NAMESPACE | awk 'NR>1{split($3,a,"Mi"); print a[1];}'); do total=$(( $total + $i )); done; echo $total; ) |
NewerOlder