Plot Cansat or any csv data using Python

From wikiluntti
Revision as of 21:21, 9 February 2023 by Mol (talk | contribs) (Created page with "== Introduction == Many different methods exists. Here, we describe some. == Theory == == Method 1: CSV reader == Robust for errors in the csv file. <syntaxhighlight lang="python"> </syntaxhighlight> == Method 2: Numpy == Do not care about the trailing spaces. <syntaxhighlight lang="python"> </syntaxhighlight> == Method 3: Pandas == Problems with trailing spaces. <syntaxhighlight lang="python"> </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Introduction

Many different methods exists. Here, we describe some.

Theory

Method 1: CSV reader

Robust for errors in the csv file.

Method 2: Numpy

Do not care about the trailing spaces.

Method 3: Pandas

Problems with trailing spaces.