disclaimer: I am a beginner in python/scikit...
I loaded the iris data succesfully:
iris = datasets.load_iris()
>>> print(iris)
{'data': array([[5.1, 3.5, 1.4, 0.2],
[4.9, 3. , 1.4, 0.2],
[4.7, 3.2, 1.3, 0.2],
[4.6, 3.1, 1.5, 0.2]......
Now, for testing purposes, I want to add / append my own entry into iris['data']. So my own "flower" in this test scenario.
I found out that iris is of type Bunch, which is type of Dictionary. I tried many things, but nothing works.
What is the syntax to add an array with my own data?
Thanks for your help