I need help in writing a web services that parse data and compute various statistics. You will write an app that uses those web services. You will write a web service, DataParserService that has a method, ParseData that accepts a string of numeric data separated by exactly one space and returns an array of doubles. No error checking is required; you can assume the user entered only doubles. You will write a web service, DescStatsService that has a method, GetDescStats that accepts an array of doubles and returns a DescriptiveStatistics object. This object contains the sample size, the average, and the standard deviation. No error checking is required. You will write a web service, CIService that has a method, GetCI that accepts an array of doubles and returns a ConfidenceInterval object. This object contains the (95%) lower class limit (LCL) and upper class limit (UCL). This web service is required to use the DescStatsService web service above. No error checking is required. You know how to calculate the sample size and average. The (sample) standard deviation (s) is found from: s=?((?_(i=1)^n??x_i^2-n¯x^2 ?)/(n-1)) where : ?_(i=1)^n?x_i^2 =x_1^2+x_2^2+?+x_n^2 A 95% confidence interval is calculated from: LCL= x ?-1.96 s/?n UCL= x ?+1.96 s/?n Note: this formula assumes a “large” sample which in practice is usually considered to be a sample of 30 or more data values. Your app should certainly work with this much data, but for debugging purposes

We need at least 10 more requests to produce the answer.
0 / 10 have requested this problem solution
The more requests, the faster the answer.
I need help in writing a web services that parse data and compute various statistics. You...
I need help with this C code Can you explain line by line? Also can you explain to me the flow of the code, like the flow of how the compiler reads it. I need to present this and I want to make sure I understand every single line of it. Thank you! /* * Converts measurements given in one unit to any other unit of the same * category that is listed in the database file, units.txt. * Handles...
I need help as quick as possible, thanks beforehand. Please
provide the test output
The Lo Shu Magic Square is a grid with 3 rows and 3 columns shown below. 35 The Lo Shu Magic Square has the following properties: The grid contains the numbers 1 - 9 exactly The sum of each row, each column and each diagonal all add up to the same number. This is shown below: 15 4 92 15 - 81 + 15 15 15...
Can you help with this C programming question. I have provided
the skeleton code below along with the Stack/Data/Process Class for
you to see/reference. Along with the Stack/Data type
definition.
**SKELTON CODE**
#include
#include
#include
Stack* concat_stack(Stack *s1, Stack *s2) {
//your code here
return NULL;
}
**STACK CLASS FOR YOU TO REFERENCE**
#include
#include
#include
#include
Stack* create_stack(int stack_capacity) {
Stack *s = (Stack*) malloc(sizeof(Stack));
if (stack_capacity < 1) {
fprintf(stderr, "Error(create_stack): invalid capacity, set to
10\n");
s->capacity =...
I need help with writing a paragraph describing the data
given. This was an independent 2 sample T-test with using
minitab
Sigfeht Instructions Selecting the Appropriate t-Test For this assignment, use data from W1 Assignment Compute a s-test comparing males' and females' heights. You must determine which type of Atest to compute. Move your output into a Microsoft Word document and write a on Submission Details: e-paragraph, APA-formatted interpretation of the Name your document SU, PSY2008 W7 A LastName,Firstinitial Submit...
I need help with this coding. A. Create ArrayIntStack.java (one that's REALLY O(constant), totally!!!) B. Create the Javadoc web page (separate Assignment #15b). A. Create your own Stack Class, call it ArrayIntStack.java and write the standard four public Stack methods as listed below (this is the easy part of the assignment). Use at least one private helper method, maybe to ensure capacity of the array. All methods in your ArrayIntStack must have O(constant) run-time. Your ArrayIntStack extends no other Classes...
Need help with assignment This assignment involves simulating a lottery drawing. In this type of lottery game, the player picks a set of numbers. A random drawing of numbers is then made, and the player wins if his/her chosen numbers match the drawn numbers (disregarding the order of the numbers). More specifically, a player picks k distinct numbers between 1 and n (inclusive), as well as one bonus number between 1 and m (inclusive). "Distinct" means that none of the...
C++ assignment help! The instructions are below, i included the main driver, i just need help with calling the functions in the main function This assignment will access your skills using C++ strings and dynamic arrays. After completing this assignment you will be able to do the following: (1) allocate memory dynamically, (2) implement a default constructor, (3) insert and remove an item from an unsorted dynamic array of strings, (4) use the string class member functions, (5) implement a...
I need help with this assignment. It's due Tuesday at 8 AM.
Please follow the instructions thoroughly as to not use any
advanced material we may not have gone over in class. The
instructions let you know what all should be used. Thanks!
Use only what you have learned in Chapters 1 - 7. Use of "advanced" material, material not in the text, or project does not follow the instructions, will result in a GRADE OF 0% for the project....
I need some help with question 1??? Some of it is cut off because I
lost the paper but can you please help me with what you can see for
question 1
write your best answer on the providedpever veurbest vi When creating a procedure just write something 1. Imagine you are a manager of three consultants and vouwant to keep arunning total of their value to You need a form where you can add brownie points to their running...
Overview: You will be writing classes that implement a playlist simulation for a music streaming app.The Playlist class will contain a dynamic array of Song objects, and the Song class contains several pieces of information about a song. You will need to: 1) Finish the writing of two classes: Song and Playlist. The full header file for the Song class has been provided in a file called Song.h. 2) Write a main program (filename menu.cpp) that creates a single Playlist...