I need help
Create a Data File using PSPP for the given items purchased from a shop. Find out the Mean and Median of Quantity Variable.
|
Item name |
Unit price |
Quantity |
|
Chocolate |
10 |
10 |
|
Biscuits |
12 |
20 |
|
coke |
18 |
70 |
|
Pepsi |
13 |
13 |
Using the WEKA Software, Load the “Glass.arff” file. Classify the data and edit the properties by changing the bin value to 5 and set UseEqualFrequency to “TRUE”.
As per HomeworkLib guidelines one question is allowed at a time.
Note: Done accordingly. Please comment for any problem. Please Uprate. Thanks
Download files:
https://drive.google.com/open?id=1RIHUHXZ2APUsDpenu_RGywzl6sNOzPKQ
To Get Mean and Median:


FREQUENCIES
/VARIABLES= Quantity
/FORMAT=AVALUE TABLE
/STATISTICS=MEAN MEDIAN.
Output:

I need help Create a Data File using PSPP for the given items purchased from a...
I need help building code in python for this: Create a program that: Creates a sales receipt, displays the receipt entries and totals, and saves the receipt entries to a file Prompt the user to enter the Item Name Item Quantity Item Price Display the item name, the quantity, and item price, and the extended price (Item Quantity multiplied by Item Price) after the entry is made Save the item name, quantity, item price, and extended price to a file...
Simple Java Notepad application using Swing
GUI
Create a help menu with shortcut ctrl+H:
-Help menu includes two menu items: 1. About
2. Visit Homepage. Add a separator between these
menu items.
1. Create a menu item which is
About. Add a short cut for the menu item. It is
ctrl+A.
-When a user clicks it (an action event occurs), display a show
message dialog box. Display the message shown in the figure.
Display information icon.
2. Create a menu...
Write a C program that takes inventory data from a file and
loads a structure of up to 100 items
defined as:
struct item
{
int item_number;
char item_name[20];
char item_desc[30];
float item_price;
}
I called mine: struct item inventory[100]; (you may use any name
you wish)
I will let you decide the appropriate prompts and edit messages.
You will read the data
from the data file and store the info in an array. Assume no
more than 100 records...
In C++ First create the two text file given below. Then complete the main that is given. There are comments to help you. An output is also given You can assume that the file has numbers in it Create this text file: data.txt (remember blank line at end) Mickey 90 Minnie 85 Goofy 70 Pluto 75 Daisy 63 Donald 80 Create this text file: data0.txt (remember blank line at end) PeterPan 18 Wendy 32 Michael 28 John 21 Nana 12...
Using Java, Load the data provided below as text file using binary tree algorithm. Create two methods, remove, and search, of a binary search tree. The search method shall allow a search by salary. It should display the matched salary and the associated name. Otherwise return not found message. The delete method shall delete the object that matched the search criteria, search by name. Name Salary Betty 44000 Bob 48000 Dilbert 98000 Joseph 22300 Nathan 90000 Sally 91000 Sam 87000...
A File class object may refer to a data file or a directory. The IntelliJ project Directory List Demo, discussed starting on page 8, shows how to get information about the contents of a directory using File class methods list() and listFle(). The IntelliJ project Create DirectoriesDemo, starting on page 10, shows how to make a set of directories using the File class method mkdir(). The IntelliJ project CopyFileDemoE has a method to copy a file. Your task is to...
PYTHON CODING HELP: BELOW ARE THE STEPS I NEED HELP WITH PLEASE. :) First create a text file named "items.txt" that has the following data in this order: Potatoes Tomatoes Carrots ... and have it be in the same directory as the Python program you are coding for this assignment. IMPORTANT: Your program should work with any size file. It should work with 100 items listed or with no items in the file! Write a Python program that ... 1....
First create the two text file given below. Then complete the
main that is given. There are comments to help you. An output is
also given You can assume that the file has numbers in it
Create this text file: data.txt (remember blank line at end)
Mickey 90
Minnie 85
Goofy 70
Pluto 75
Daisy 63
Donald 80
Create this text file: data0.txt (remember blank line at
end)
PeterPan 18
Wendy 32
Michael 28
John 21
Nana 12
Main
#include...
Need help debugging. Create an application that keeps track of the items that a wizard can carry. console application which has no errors: import java.util.Scanner; public class Console { private static Scanner sc = new Scanner(System.in); public static String getString(String prompt) { System.out.print(prompt); String s = sc.nextLine(); return s; } public static int getInt(String prompt) { int i = 0; boolean isValid = false; while (!isValid) { System.out.print(prompt);...
I need help with one small part of the following question. I think I know how to do all the things the question is asking I just can’t figure out how to get it to open the text file. I tried Filename =input “vacation.txt” but that didn’t open the file. Does the program have to direct it to "find" the program? HERE IS THE COMPLETE QUESTION: Create a Python program that: Opens a file and reads the contents of the...