Merge branch 'feature/ium_02'

This commit is contained in:
Adam Wojdyla 2022-03-25 08:21:56 +01:00
commit 23eb6f19a3
3 changed files with 33 additions and 11 deletions

29
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,29 @@
pipeline {
agent any
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
parameters {
string (
defaultValue: 'Hello World!',
description: 'Tekst, którym chcesz przywitać świat',
name: 'INPUT_TEXT',
trim: false
)
}
stages {
stage('Hello') {
steps {
//Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!)
echo "INPUT_TEXT: ${INPUT_TEXT}"
//Wywołaj w konsoli komendę "figlet", która generuje ASCI-art
sh "figlet \"${INPUT_TEXT}\" | tee output.txt"
}
}
stage('Goodbye!') {
steps {
echo 'Goodbye!'
//Zarchiwizuj wynik
archiveArtifacts 'output.txt'
}
}
}
}

View File

@ -1,3 +1,6 @@
# Inżynieria uczenia maszynowego
s44407
s444507

10
tesy.py
View File

@ -1,10 +0,0 @@
# cars = pd.read_csv('Car_Prices_Poland_Kaggle.csv')
# cars_normalized = normalize_dataset(cars)
#
# # cars[["mark", "price"]].groupby("mark").mean().plot(kind="bar")
# cars["mark"].value_counts().plot(kind="bar")
#
# print(cars.describe(include='all'))
# print(cars["price"].value_counts())
#
# divide_dataset(cars)