diff --git a/Info.txt b/Info.txt index a5c8d97..19f304f 100644 --- a/Info.txt +++ b/Info.txt @@ -1,4 +1,4 @@ -CSVpySTAT V0.2 by Ricky Helfgen +CSVpySTAT V0.3 by Ricky Helfgen Open, edit and analyze CSV-Data files with Python3 and the packages: diff --git a/README.md b/README.md index cf7e05f..edd5464 100644 --- a/README.md +++ b/README.md @@ -23,5 +23,7 @@ Thanks to all this Programmers [More under: http://www.reh-webdesign.de/csvpystat/](http://www.reh-webdesign.de/csvpystat/) +https://www.youtube.com/watch?v=A0sPcLresFU + diff --git a/erzeuge_dataframe.py b/erzeuge_dataframe.py deleted file mode 100644 index 8ad531f..0000000 --- a/erzeuge_dataframe.py +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -""" -Created on Sun May 1 08:56:56 2022 - -@author: blaubaer -""" - -import pandas as pd -import numpy as np -anzahl_sp = 3 -anzahl_r = 4 - -df= pd.DataFrame(index=np.arange(anzahl_sp), columns=np.arange(anzahl_r)) -print (df)