write a comprehensive note on discrimanition and
classification construct a discriminat function using a
hypothetical data and classify a new object with some specific
values using the discriminate function
question from applied multivariate statistical analysis book




write a comprehensive note on discrimanition and classification construct a discriminat function using a hypothetical data...
part 1(do not write on note book and before send program compile it) void testStruct01() this function is called from main in main() call the function void test01() in the function void test01() 1. create a FootballTeam object 2. using 'cin', load the FootballTeam object 3. using 'cout', display (print) the FootballTeam object 4. output should look like the following ********** AFC East ********** Home Team XXXXXXXXXXXXXXXXXXXXXXXX Opponent team XXXXXXXXXXXXXXXXXXXXXXXX Home Team score XXXXXXXXXXXXXXXXXXXXXXXX Opponent team score XXXXXXXXXXXXXXXXXXXXXXXX part...
Implement the following machine learning tasks, utilizing Regression techniques e Prediction e Classification eFeature Reduction Feature Independence Model Selection (underfitting and overfitting analysis) 2 Required Components You may utilize Python or Matlab libraries, for the following implementations. 1. Implement prediction utilizing multiple linear regression on a data set with several features Perform an evaluation of the residuals to check for assumptions of your model, such as li earity, noise term with zero mean and constant variance, normality and so forth....
Q1. Write a recursive function in C++ void printNumberedChars(string str, int i=0) { ... } which prints each character of the given string str on a new line, with each line numbered 1, 2, 3, …. For example calling the function with printNumberedChars("hello"); should output the following: 1. h 2. e 3. l 4. l 5. o Q2. Write a recursive function in C++ int sumArray(const int* arr, unsigned int size) { ... } which takes an array of integers,...
Using the data inspector. Record some values for the height of
the projectile as a function of time. Using these data and any
graphical analysis program you like, create a graph of projectile
height as a function of time and generate a quadratic fit to your
data.
My data is as follows:
(time, height): (0.1s,1.25m), (0.3s, 3.46m), (0.6s, 6.03m),
(0.8s, 7.25m), (1.1s, 8.35m), (1.3s, 8.6m), (1.5s, 8.45m), (1.8s,
7.49m), (2.2s, 4.84m), (2.6s, 0.62m)
Initial: angle- 60 degrees, speed, 15 m/s,...
Classification in Python: Classification In this assignment, you will practice using the kNN (k-Nearest Neighbors) algorithm to solve a classification problem. The kNN is a simple and robust classifier, which is used in different applications. The goal is to train kNN algorithm to distinguish the species from one another. The dataset can be downloaded from UCI Machine Learning Repository: https://archive.ics.uci.edu/ml/machine-learning-databases/iris/ (Links to an external site.)Links to an external site.. Download `iris.data` file from the Data Folder. The Data Set description...
using c/c++ Q1 (15 Marks) Console Application for Student Data 1- Write a function named Average that Receives two integer numbers as parameter and returns the average Is used in a main function. Main() stays in a loop and asks user to enter 2 numbers and then shows the average using the Average function above Define a class named Student with following members: private data: 2 grades and a GPA (average). public constructor to initialize the members a public function...
Data Structures Using C++: Using C++: Write the definition of the function, nodeCount, that returns the number of nodes in a binary tree. Add this function to the class binaryTreeType and create a program to test this function. Read the tree definitions from files.
note: the data doesnt have to come from statcrunch, it can be
from a random data or source or whatever, nothing specific. it can
be on body temperature of people who smoke and who dont smoke (if
possible I prefer data on that). and i need is just one data graph
or chart (histogram or box plot). everything else is self
explanitory.
thanks
1) Select a data source to analyze in Staterunch (Select Explore; Data) -Specify one research question your...
Write a C++ program to read in 4 different types of data values using cin, cout, and the getline() function and display the values in the same order to the screen. Use cin to read in the first value and getline() to read in the remaining characters. Note that the 4 data items are entered on 1 line. The following shows a sample run of the program. Enter 4 data values: 45 abc 12.34 d The 4 data values entered...
(C++)Write a function that accepts an int array and the array’s size as arguments.The function should create a new array that is twice the size of the argument array.The function should copy the contents of the argument array to the new array, and initialize the unused elements of the second array with 0.The function should return a pointer to the new array.Demonstrate the function by using it in a main program that reads an integer N (that is not more...