Add source example files

This commit is contained in:
2025-07-12 18:43:56 +02:00
parent 11d6846f49
commit d0bcfcf8f1
62 changed files with 40101 additions and 161 deletions

View File

@ -0,0 +1,11 @@
"""Define simple Series objects by hand."""
import pandas as pd
if __name__ == '__main__':
# Creating a series with coherent value type
s1 = pd.Series([1, 3, 7, 9, 13, 15, 19, 21])
# Get the length of the series
print(f"Size of the series: {len(s1)}")
# Display the contents of s1
print(s1)