Updated version.
I had figured out my previous issue with it but am still unsure how to do the last part. I do not know how to get the number that goes inside of the bracket instead of getting the value that is stored inside of it. The array consists of 12 numbers and for example I am looking for the highest value which might be 20 and was entered in the 4th spot. I can only figure out how to get it to display the 20 but I want to display the 4 instead. It has user input so the number that should be displayed may vary and I am unsure how to accomplish this.
I only need the arrays number to be displayed for the highest and lowest values. I don't know if I am using the wrong kind of array for this not.
So you have a couple issues but easy fixes. This only goes to fix image 3 which is highestValue.
1.) When you are setting
highestValue
you are saying highest value is equal to [January, amountOfRain]. You need to have it sayhighestValue <- data[1,2]
. This will point it toamountOfRain
.2.) You need to change the name of either your
Call
or your variablehighestValue
because it's conflicting.Give those a try and let me know what you get.