Skip to content
Snippets Groups Projects
Commit b262bbc8 authored by BastianTigges's avatar BastianTigges
Browse files

sminor bug fixed in documentation

parent e1609a50
No related branches found
No related tags found
No related merge requests found
No preview for this file type
No preview for this file type
......@@ -150,8 +150,7 @@ Now, let's have a look at the created HDF5 file. Below, you can see a picture of
The structure is fully expanded and an open-source HDF5 viewer is used to show it.
On the left side, you can see the structe of the file we created:
.. image:: user-images/example-project/example-project_overviewWholeProject.png
.. image:: user-images/example-project/example-project_overviewWholeProject.PNG
.. end of example project
......
......@@ -240,7 +240,7 @@ This is how we can ensure to export the whole file:</p>
<p>Now, let’s have a look at the created HDF5 file. Below, you can see a picture of the created file.
The structure is fully expanded and an open-source HDF5 viewer is used to show it.
On the left side, you can see the structe of the file we created:</p>
<img alt="../_images/example-project_overviewWholeProject.png" src="../_images/example-project_overviewWholeProject.png" />
<img alt="../_images/example-project_overviewWholeProject.PNG" src="../_images/example-project_overviewWholeProject.PNG" />
</section>
</section>
<section id="example-project-import-of-a-csv-object">
......
......@@ -150,8 +150,7 @@ Now, let's have a look at the created HDF5 file. Below, you can see a picture of
The structure is fully expanded and an open-source HDF5 viewer is used to show it.
On the left side, you can see the structe of the file we created:
.. image:: user-images/example-project/example-project_overviewWholeProject.png
.. image:: user-images/example-project/example-project_overviewWholeProject.PNG
.. end of example project
......
......@@ -3,7 +3,7 @@ from pykkn.dataset import Dataset
if __name__ == "__main__":
df = pd.read_csv("exampleTable.csv")
df = pd.read_csv("exampleTable.csv", sep=';')
dataset1 = Dataset("from_csv_table")
dataset1.data = df.values
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment