diff --git a/uebung/example_hist_methods/example.r b/uebung/example_hist_methods/example.r
new file mode 100644
index 0000000000000000000000000000000000000000..126272d8498e801f319c5de30743131458537a6e
--- /dev/null
+++ b/uebung/example_hist_methods/example.r
@@ -0,0 +1,5 @@
+df <- read.csv(file="in1.csv", header=F,
+ col.names=c("step", "temp","function_value", "x1"))
+png(filename="ex1_hist.png")
+hist (df$x1, xlab = "x coord", main = "", freq = F, breaks = 60)
+dev.off()
diff --git a/uebung/example_hist_methods/example_1.xlsx b/uebung/example_hist_methods/example_1.xlsx
new file mode 100644
index 0000000000000000000000000000000000000000..0c6f91fcd8ce649fa393fa1af7dc505c3c51404d
Binary files /dev/null and b/uebung/example_hist_methods/example_1.xlsx differ
diff --git a/uebung/example_hist_methods/examplehistogram.gnuplot b/uebung/example_hist_methods/examplehistogram.gnuplot
new file mode 100644
index 0000000000000000000000000000000000000000..5df381f2e2534f07319f77f053e41a3134799d22
--- /dev/null
+++ b/uebung/example_hist_methods/examplehistogram.gnuplot
@@ -0,0 +1,13 @@
+# Example histogram for the Uebung.
+# If you have the data in a file called in1.csv and the column
+# you want is the fourth column, this makes a reasonable histogram.
+# Your data is probably in some other column, so change the $4 below.
+
+set datafile separator ','
+binwidth=0.005
+bin(x,width)=width*floor(x/width)
+
+set title 'distribution of x coords'
+set xlab 'x coord'
+unset key
+plot 'in1.csv' using (bin($4,binwidth)):(1.0) smooth freq with boxes
\ No newline at end of file