PythonSampleAppExperimental/sample_app.py

28 lines
999 B
Python
Raw Normal View History

2022-10-18 15:33:39 +02:00
# -----------------
# Copyright © 2022 ACK Cyfronet AGH, Poland.
# -----------------
#
# Sample function created for demonstration of creating custom applications functionality
# See also https://docs.cyfronet.pl/display/ISDOC/Creating+Custom+Applications
2024-03-29 10:52:07 +01:00
from numpy import genfromtxt
2022-10-18 15:33:39 +02:00
import matplotlib.pyplot as plt
2022-10-18 15:22:27 +02:00
def main(numbers_file, multiplier):
"""
2022-10-18 15:33:39 +02:00
Example Python application that reads the given numbers_file and multiplies
the content (numbers) by the supplied multiplier
2022-10-18 15:22:27 +02:00
Arguments:
numbers_file: path to input file of type 'text_data'
2022-10-18 15:33:39 +02:00
multiplier: number by which the array of numbers is multiplied
2022-10-18 15:22:27 +02:00
Returns:
2022-10-18 15:33:39 +02:00
A file named 'multiplied_numbers_plot.png' containing a plot of multiplied
numbers.
2022-10-18 15:22:27 +02:00
"""
2024-03-29 10:57:24 +01:00
numbers = genfromtxt(numbers_file, comments="#", delimiter=",", unpack=False)[:,:-1]
2022-10-18 15:33:39 +02:00
multiplied_numbers = numbers * multiplier
plt.figure()
plt.plot(multiplied_numbers)
plt.savefig('multiplied_numbers_plot.png')