forked from tcs-test-user/PythonSampleApp
28 lines
986 B
Python
28 lines
986 B
Python
# -----------------
|
|
# 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
|
|
|
|
from numpy import loadtxt
|
|
import matplotlib.pyplot as plt
|
|
|
|
def main(numbers_file, multiplier):
|
|
"""
|
|
Example Python application that reads the given numbers_file and multiplies
|
|
the content (numbers) by the supplied multiplier
|
|
Arguments:
|
|
numbers_file: path to input file of type 'text_data'
|
|
multiplier: number by which the array of numbers is multiplied
|
|
Returns:
|
|
A file named 'multiplied_numbers_plot.png' containing a plot of multiplied
|
|
numbers.
|
|
"""
|
|
|
|
numbers = loadtxt(numbers_file, comments="#", delimiter=",", unpack=False)
|
|
multiplied_numbers = numbers * multiplier
|
|
plt.figure()
|
|
plt.plot(multiplied_numbers)
|
|
plt.savefig('multiplied_numbers_plot.png')
|