We can make this file beautiful and searchable if this error is corrected: It looks like row 9 should actually have 17 columns, instead of 7 in line 8.
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
radius_mean,texture_mean,perimeter_mean,area_mean,smoothness_mean,compactness_mean,symmetry_mean,fractal_dimension_mean,radius_worst,texture_worst,perimeter_worst,area_worst,smoothness_worst,compactness_worst,symmetry_worst,fractal_dimension_worst,diagnosis | |
17.99,10.38,122.8,1001,0.1184,0.2776,0.2419,0.07871,25.38,17.33,184.6,2019,0.1622,0.6656,0.4601,0.1189,1 | |
20.57,17.77,132.9,1326,0.08474,0.07864,0.1812,0.05667,24.99,23.41,158.8,1956,0.1238,0.1866,275,0.08902,1 | |
19.69,21.25,130,1203,0.1096,0.1599,0.2069,0.05999,23.57,25.53,152.5,1709,0.1444,0.4245,0.3613,0.08758,1 | |
11.42,20.38,77.58,386.1,0.1425,0.2839,0.2597,0.09744,14.91,26.5,98.87,567.7,0.2098,0.8663,0.6638,173,1 | |
20.29,14.34,135.1,1297,0.1003,0.1328,0.1809,0.05883,22.54,16.67,152.2,1575,0.1374,205,0.2364,0.07678,1 | |
12.45,15.7,82.57,477.1,0.1278,0.17,0.2087,0.07613,15.47,23.75,103.4,741.6,0.1791,0.5249,0.3985,0.1244,1 | |
18.25,19.98,119.6,1040,0.09463,109,0.1794,0.05742,22.88,27.66,153.2,1606,0.1442,0.2576,0.3063,0.08368,1 | |
13.71,20.83,90.2,577.9,0.1189,0.1645,0 |
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
import numpy as np | |
import matplotlib.pyplot as plt | |
from matplotlib import cm | |
from PIL import Image | |
class Utils(): | |
@staticmethod | |
def getX(punto: str): | |
aux = punto.split(',') |
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
import subprocess, os | |
#subprocess.run(["ls", "-l"]) | |
dirpath = '/var/www/html/moodle' | |
#dirpath = '/home/camilo/Projects/DINTEV/TEST' | |
#blocks | |
blocks = ['/blocks/', | |
'git clone --branch master https://github.com/desarrolloant/course_list.git course_list', | |
'git clone --branch master https://github.com/jonof/moodle-block_completion_progress.git completion_progress', |
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
def calcularNeto(): | |
global contador | |
global nomina | |
repetir = 0 | |
contador = 0 | |
nomina = 0 | |
while (True): | |
contador = contador + 1 | |
print("=====================================================================") | |
print("= Programa para calcular el valor de la nómina de la empresa ABC =") |
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
import java.io.IOException; | |
import java.math.BigInteger; | |
import java.util.Scanner; | |
public class Main { | |
public static void main(String[] args) throws IOException { | |
Scanner escanercito = new Scanner(System.in); | |
while (escanercito.hasNextInt()){ |
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
#include <bits/stdc++.h> | |
using namespace std; | |
int main() | |
{ | |
ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); | |
freopen("out.txt", "w", stdout); | |
int stack; | |
cin >> stack; | |
cin.ignore(numeric_limits<streamsize>::max(), '\n'); | |
while (stack--) |
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
package blackJack_v1; | |
import java.util.Scanner; | |
public class VistaBlackJack { | |
private Jugador jugador; | |
private ControlBlackJack controlUnit; | |
private Scanner lector; |
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
#include <iostream> | |
#include <tgmath.h> | |
using namespace std; | |
double raiz(int veces, double raizDeN) | |
{ | |
if (veces == 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
{ | |
"configurations": [ | |
{ | |
"name": "Win32", | |
"intelliSenseMode": "clang-x64", | |
"defines": [ | |
"_DEBUG", | |
"UNICODE", | |
"__GNUC__=7", | |
"__stdcall=attribute((stdcall))", |