Hi,
I am stuck with exercise 9.
I am using the following code:
START CODE HERE
Use StatisticsGen to compute the statistics using the curated schema
statistics_gen_updated = StatisticsGen(result = user_schema_importer.outputs[‘result’])
Run the component
context.run(statistics_gen_updated)
END CODE HERE
however, do not get the expected result. Error message is
TypeError Traceback (most recent call last)
in
1 ### START CODE HERE ###
2 # Use StatisticsGen to compute the statistics using the curated schema
----> 3 statistics_gen_updated = StatisticsGen(result = user_schema_importer.outputs[‘result’])
4
5
TypeError: init() got an unexpected keyword argument ‘result’
Pls. advise, thanx in advance
Jörn