-
Conceptually, how would I do this in javascript:
After the user inputs a set of data, I need to output the mean, median, and mode; I tell them to input the numbers, with each number separated by a q, so I can easily use arrays. MAke sure the array is parse'd.
Mean - split the array at the separation character. Create a loop, where I set a variable equal to the current case of the array, added with the sum of all the previous cases of the array. When it gets to the end, take the sum of all the previous cases of the array and the last case of the array, and divide that by the length of the array.
Mode - split the array at the separation character. Sort the resulting numbers from lowest to highest. Honestly, I have no idea how I would economically figure out the most occuring number in my array.
Median - take the length of the array, and if the module of the array is 0, display the number (after its been sorted) that is at the index of the length of the array divided by 2. If the module is 1, take the average of half the index of the length of the array +1, and the index of the array -1.
document.write the number out.
Can anyone point me in the right direction as to how I could flesh these thoughts out into code, or if my thoughts are totally wrong, and help me think in javascript better?
-
-
Your plan seems sound enough(I rarely think things out ahead of time. I set goals of what I want something to accomplish and worry about one small piece at a time). Do yu know javascript? If not, then that is where to start. What you are talking about is not too hard, so a good online tutorial would be good.
-
-
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks