Python Data Analysis Code 2 Input Files (Same files supplied to you) Word, Excel or PDF file containing your test resultsPython Applications for Lab4:This exercise allows a user to load one of two...

1 answer below »
Python Data Analysis Code 2 Input Files (Same files supplied to you) Word, Excel or PDF file containing your test resultsPython Applications for Lab4:This exercise allows a user to load one of two CSV files and then perform histogram analysis and plots for select variables on the datasets. The first dataset represents the population change for specific dates for U.S. regions. The second dataset represents Housing data over an extended period of time describing home age, number of bedrooms and other variables. The first row provides a column name for each dataset. The following columns should be used to perform analysis: PopChange.csv: Pop Apr 1 Pop Jul 1 Change PopHousing.csv: AGE BEDRMS BUILT ROOMS UTILITYNotice for the Housing CSV file, there are more columns in the file than are required to be analyzed. You can and should still load each column.Specific statistics should include: Count Mean Standard Deviation Min Max Histogram


Week 5 Deliverables Overview: In this week, you have studied additional Python language syntax including File I/O, Exceptions and Object-Oriented Programming. The Lab for this week demonstrates your knowledge of this additional Python functionality. Be sure to use the examples in the textbook reading along with the associate libraries, functions and processes when completing the assignments for this week. Submission requirements for this project include 4 files. (Zipping them into one file is acceptable and encouraged):  Python Data Analysis Code  2 Input Files (Same files supplied to you)  Word, Excel or PDF file containing your test results Python Applications for Lab4: (total 100 points): This exercise (80 points) allows a user to load one of two CSV files and then perform histogram analysis and plots for select variables on the datasets. The first dataset represents the population change for specific dates for U.S. regions. The second dataset represents Housing data over an extended period of time describing home age, number of bedrooms and other variables. The first row provides a column name for each dataset. The following columns should be used to perform analysis:  PopChange.csv:  Pop Apr 1  Pop Jul 1  Change Pop Housing.csv:  AGE  BEDRMS  BUILT  ROOMS  UTILITY Notice for the Housing CSV file, there are more columns in the file than are required to be analyzed. You can and should still load each column. Specific statistics should include:  Count  Mean  Standard Deviation  Min  Max  Histogram A user interface might look similar to this: ***************** Welcome to the Python Data Analysis App********** Select the file you want to analyze: 1. Population Data 2. Housing Data 3. Exit the Program 1 You have entered Population Data. Select the Column you want to analyze: a. Pop Apr 1 b. Pop Jul 1 c. Change Pop d. Exit Column a You selected Pop Apr 1 The statistics for this column are: Count = 10000 Mean = 32.5 Standard Deviation = 4.5 Min = 53.2 Max = 12.5 The Histogram of this column is now displayed. Select the Column you want to analyze: a. Pop Apr 1 b. Pop Jul 1 c. Change Pop d. Exit Column d You selected to exit the column menu Select the file you want to analyze: 1. Population Data 2. Housing Data 3. Exit the Program 3 *************** Thanks for using the Data Analysis App********** If an inappropriate entry is detected, the program should prompt for a correct value and continue to do so until a correct value is entered. Hints: 1. Use the Pandas, Numpy, MatplotLib and other Python modules when appropriate. 2. Be sure to install the required Python modules in your environment before you import or try to use them in your code. For example, pip install each of the required modules that are external Python libraries that you need. 3. If an inappropriate entry is detected, the program should prompt for a correct value and continue to do so until a correct value is entered. 4. Use comments to document your code 5. Test with many combinations. 6. Use pylint to verify the code style – the goal is a 10! 7. The user Interface should continue to run until the user indicates they are ready to exit. 8. Be sure to review the previous readings and modules as you may need to use statistics and other modules to complete this lab. 2. (20 points) Document your testing results using your programming environment. You should also include and discuss your pylint results for the application. The test document should include a test table that includes the input values, the expected results and the actual results. A screen capture should be included that shows the actual test results of running each test case found in the test table. Be sure to include multiple test cases to provide full coverage for all code and for each function you develop and test. Any submissions that do not represent work originating from the student will be submitted to the Dean’s office and evaluated for possible academic integrity violations and sanctions.
Answered 1 days AfterFeb 19, 2022

Answer To: Python Data Analysis Code 2 Input Files (Same files supplied to you) Word, Excel or PDF file...

Sathishkumar answered on Feb 20 2022
111 Votes
Test Results:
***************** Welcome to the Python Data Analysis App**********
Select the file
you want to analyze:
1. Population Data
2. Housing Data
3. Exit the Program 1
You have entered Population Data.
Select the Column you want to analyze:
a. Pop Apr 1
b. Pop Jul 1
c. Change Pop
d. Exit Column
a
You selected Pop Apr 1
The statistics for this column are:
Count = 557.0
Mean = 56557.314183123875
Standard Deviation = 158127.10545434814
Min = 13519.0
Max = 3726157.0
The histogram is now displayed!
b
You selected Pop Jul 1
The statistics for this column are:
Count = 557.0
Mean = 55758.48473967684
Standard Deviation = 136086.53082593964
Min = 12619.0
Max = 3195153.0
The histogram is now...
SOLUTION.PDF

Answer To This Question Is Available To Download

Submit New Assignment

Copy and Paste Your Assignment Here