27 Commits

Author SHA1 Message Date
c49f1364b9 Merge branch 'developer' of https://gitea.hokage.de/RecklingK/Demo into developer 2019-12-20 11:45:51 +01:00
1a6df64a6d Merge branch 'developer' of https://gitea.hokage.de/RecklingK/Demo into developer 2019-12-20 11:44:04 +01:00
4d6c216b0d funktion paar zeilen 2019-12-20 11:43:43 +01:00
31c96cfa99 pre-cherry 2019-12-20 11:33:03 +01:00
672300019d plot chic gemacht 2019-12-20 11:15:15 +01:00
3158fefa3a ggplot verlängert 2019-12-20 11:07:34 +01:00
49bb0ddc29 ggplot für fazfi limit 1000 2019-12-20 11:05:32 +01:00
62aa22a678 function c
demo function ggplot lines
2019-12-20 10:51:31 +01:00
8c7eacfdbd function a
demo ggplot function
2019-12-20 10:48:44 +01:00
3c4b0b93f6 add libraries 2019-12-20 10:46:05 +01:00
7148d6fbca add lines to plot 2019-12-20 10:46:05 +01:00
5bc0a6d998 function g
demo if else
2019-12-20 10:46:05 +01:00
44e933d40d python function amended 2019-12-20 10:42:53 +01:00
73b6f2ea41 function b
demo ggplot points
2019-12-20 10:29:24 +01:00
ea5e405254 fehlerkorrektur 2019-12-19 16:34:04 +01:00
9763a32e87 Merge branch 'developer' of https://gitea.hokage.de/RecklingK/Demo into developer 2019-12-19 16:27:33 +01:00
68b9d19b27 Ende der Kreativität
resolve #6
2019-12-19 16:23:12 +01:00
afd234429a Merge branch 'plotten' into developer 2019-12-19 16:21:32 +01:00
1fa0851dd0 abschluss plotten 2019-12-19 16:21:14 +01:00
8d8a7dbb86 Merge branch 'developer' into kreativ 2019-12-19 16:14:13 +01:00
b99f3934e9 du entfernt
resolve #6
2019-12-19 16:03:49 +01:00
60a9e768d4 Zweite Änderung
resolve #5
2019-12-19 16:02:57 +01:00
88ccc761a3 new line hinzugefügt 2019-12-19 16:01:43 +01:00
f0c04b62a5 Begonnen resolve #5 2019-12-19 15:54:10 +01:00
1cbb651ae7 grid hinzugefügt 2019-12-19 15:51:58 +01:00
3e8a18c57d einfacher plot 2019-12-19 15:51:14 +01:00
ec72a1fdcf drastisch kürzen 2019-12-19 15:46:40 +01:00
3 changed files with 70 additions and 14 deletions

View File

@@ -1,17 +1,47 @@
Hello Akira! library(ggplot2); library(grid)
Hello!
Lorem Ipsum b <- function() {
#this function is a demo function
def neue_funktion(): ggplot() +
print("funk") ggpoint() +
scale_discrete() +
def schleife(): theme()
for i in range(10):
print(i)
aki <- func(x) {
print(x)
} }
plot(1:10, rep(1,10)) def neue_funktion():
lines(1:10, 1:10) print("kreativ")
print("sven")
c <- function() {
#this function is a demo function
ggplot() +
gglines() +
scale_discrete() +
theme()
}
print("welt")
g <- if(b == a) {
print("bla bla")
} else {
print("nee")
}
print("issues")
a <- function() {
#this function is a demo function
ggplot() +
ggbar() +
scale_discrete() +
theme()
}
plot(letters[1:5], seq(1:5))
lines(1:5, rep(1,5), col="red")
lines(rep(2,5), 1:5, col="green")
grid()
#finale oh oh

16
demoFZSTAM.R Normal file
View File

@@ -0,0 +1,16 @@
library(ggplot2); library(RODBC)
channel <- odbcConnect("ebv_d29", uid = "RECKLINGK", pwd = "stapler13")
test <- sqlQuery(channel, stringsAsFactors=F,
"SELECT FZSTAM.FIRNR, FZSTAM.FAZID, FZSTAM.FAZFI, FZSTAM.BAUJJ
FROM FZSTAM
WHERE FZSTAM.FIRNR = 1
LIMIT 1000
")
odbcCloseAll(); rm(channel)
ggplot(test, aes(x=FAZID)) +
geom_line(aes(y=FAZFI)) +
geom_line(aes(y=BAUJJ), col="red") +
scale_fill_hue(c = 40) +
theme_bw()

10
test.py Normal file
View File

@@ -0,0 +1,10 @@
def testfunktion(*args, **kwargs):
print(*args, end="")
testfunktion(
"mein",
"test",
"noch",
"mehr",
)