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
class Ejercicio { | |
constructor(){ | |
this.w = this.width = 194, this.height= 122; | |
this.g = Array(this.width*(this.height+2)).fill(0); | |
for(let i=0; i< this.width; i++){ | |
for(let j=0; j< this.height; j++){ | |
if (j <= 2 || j >= this.height - 2 ) |
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
<!doctype html> | |
<html> | |
<head> | |
<script src="debugger.js"></script> | |
</head> | |
<body> | |
</body> |
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
<!doctype html> | |
<html> | |
<head> | |
<link rel="stylesheet" href="estiloa.css"> | |
</head> | |
<body> | |
<div id="menu"> | |
<ul> | |
<li><a href="index.html"> ERREZETAK</a></li> | |
<li><a href="formularioa.html">BIDALI ZURE ERREZETA </a></li> |
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
library('rvest') | |
url <- 'http://www.imdb.com/search/title?count=100&release_date=2018,2016&title_type=feature' | |
webpage <- read_html(url) | |
#Using CSS selectors to scrap the rankings section | |
rank_data_html <- html_nodes(webpage,'.text-primary') | |
#Converting the ranking data to text | |
rank_data <- html_text(rank_data_html) | |
#Data-Preprocessing: Converting rankings to numerical |
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
library(ggplot2) | |
# Price, Age, KM(kilometers driven), Fuel Type, | |
# HP(horsepower), Automatic or Manual, Number of Doors, | |
# and Weight in pounds are the data collected in this file for | |
# Toyota Corollas. | |
toyota <- read.csv("https://raw.githubusercontent.com/datailluminations/PredictingToyotaPricesBlog/master/ToyotaCorolla.csv") | |
g <- ggplot(toyota, aes(Price)) |
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
?cars | |
str(cars) | |
summary(cars) | |
gg <- ggplot(cars, aes(x=speed, y=dist)) + | |
geom_point() | |
plot(gg) | |
gg <- ggplot(cars, aes(x=speed, y=dist)) + |
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 hasiera; | |
import java.awt.Image; | |
import java.net.URL; | |
import java.util.Vector; | |
import javax.swing.ImageIcon; | |
public class Lag { | |
String izena; |
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>Taulak</groupId> | |
<artifactId>Taulak</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<build> | |
<directory>target</directory> | |
<outputDirectory>target/classes</outputDirectory> | |
<finalName>${artifactId}-${version}</finalName> |
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
<plugin> | |
<artifactId>maven-assembly-plugin</artifactId> | |
<configuration> | |
<archive> | |
<manifest> | |
<mainClass>hasiera.Taula</mainClass> | |
</manifest> | |
</archive> | |
<descriptorRefs> | |
<descriptorRef>jar-with-dependencies</descriptorRef> |
