files 4 files total
Instructions
When you finish this class we hope that you would be able to write and understand Python code to solve unique Data Analytics tasks on your own.
Something we feel an employer would expect if this class was on your resume.
It is expected that you have studied the material by reading and completing the zyBook activities, asking questions, and trying out code.
For each assignment it is expected that:
You would go through the program development cycle.
Understand the problem task thoroughly. UNDERSTAND
Plan your code by producing an algorithm showing all of the steps. ANALYZE
This could be done as putting pseudocode comments in the code.
Write your code. APPLY
Test your code thoroughly. EVALUATE – FINISH CREATION
Double check the assignment requirements.
Programming Submission Rubric for DAT 53580% Assignment Requirements Fulfilled. The program runs correctly.
20% Divided equally among the items in the list below:
Only zipped folders or single files should be submitted to Blackboard. All files require the correct extensions. .py for Spyder IDE files or .ipynb
Zip multiple files in a folder to submit.
All submission folder and file names must include the student’s last name.
All individual files should have self documenting names.
All variables should have self documenting names.
Use of comments, including a comment block at the top of each file with your name and other details.
Include this sentence in the comment block at the top and type in your name:
I certify, that this computer program submitted by me is all of my own work. Signed: Your Name
All sources cited.
Correct spelling and grammar.
Neat, clearly presented code.
Session 3 Programming Assignment Week 5 & 6
Use one Jupyter Notebook file for all parts of the assignment.
Upload your .ipynb file to MyCourses.
PART 1 – 20 PointsThe dataset mpg contains information on miles per gallon (mpg) and engine size for cars sold from 1970 through 1982. The dataset has the features mpg, cylinders, displacement, horsepower, weight, acceleration, model_year, origin, and name.
Load the dataset mpg
Create a new dataframe using the columns weight and mpg
Use matplotlib to make a scatter plot of weight vs mpg labelling the x-axis Weight and the y-axis MPG
If displacement and horsepower were used instead of weight and mpg, the output would be:
displacement horsepower0 307.0 130.01 350.0 165.02 318.0 150.03 304.0 150.04 302.0 140.0.. … …393 140.0 86.0394 97.0 52.0395 135.0 84.0396 120.0 79.0397 119.0 82.0 [398 rows x 2 columns] Part 2 – 20 PointsThe titanic dataset contains data on 887 Titanic passengers, including each passenger’s survival status, embarkation location, cabin class, and sex. Write a program that performs the following tasks:
Load the dataset in titanic.csv as titanic.
Create a new data frame, firstSouth, by subsetting titanic to include instances where a passenger is in the first class cabin (pclass feature is 1) and boarded from Southampton (embarked feature is S).
Create a new data frame, secondThird, by subsetting titanic to include instances where a passenger is either in the second (pclass feature is 2) or third class (pclass feature is 3) cabin.
Create bar charts for the following:Passengers in first class who embarked in Southampton grouped by sex
Passengers in second and third class grouped by survival status
The output should be: survived pclass sex age … deck embark_town alive alone3 1 1 female 35.0 … C Southampton yes False6 0 1 male 54.0 … E Southampton no True11 1 1 female 58.0 … C Southampton yes True23 1 1 male 28.0 … A Southampton yes True27 0 1 male 19.0 … C Southampton no False [5 rows x 15 columns] survived pclass sex age … deck embark_town alive alone0 0 3 male 22.0 … NaN Southampton no False2 1 3 female 26.0 … NaN Southampton yes True4 0 3 male 35.0 … NaN Southampton no True5 0 3 male NaN … NaN Queenstown no True7 0 3 male 2.0 … NaN Southampton no False [5 rows x 15 columns] Part 3 – 20 PointsThe nbaallelo_slr dataset contains information on 126315 NBA games between 1947 and 2015. The columns report the points made by one team, the Elo rating of that team coming into the game, the Elo rating of the team after the game, and the points made by the opposing team. The Elo rating measures the relative skill of teams in a league.
The code creates a new column y in the data frame that is the difference between pts and opp_pts.
Split the data into 70 percent training set and 30 percent testing set using sklearn’s train_test_split function. Set random_state=0.
Store elo_i and y from the training data as the variables X and y.
The code performs a simple linear regression on X and y.
Perform 10-fold cross-validation with the default scorer using scikit-learn’s cross_val_score function.
Ex: If random_state=1 is used, the output is:
The cross-validation scores are [0.08005753 0.06323433 0.0703416 0.06041472 0.07528804 0.06335341 0.07329385 0.06774416 0.06069483 0.07071991]please follow instructions
part1,2,3 should be one file so need 4 different files same questions like one question or four people
Category: Information Technology
-
“Exploring Data Analytics with Python: From Problem Analysis to Code Implementation” “Exploring the Relationship Between NBA Team Elo Ratings and Game Performance using Simple Linear Regression and Cross-Validation”
-
“ITEC 274 Exam: Multiple Choice Questions”
i have 2 hours on the timer for my exam, i will send the multiple choice questions here, send the right answer. the subject is ITEC 274
-
DAT 535 Programming Assignment: Seaborn, NumPy, and Linear Regression
80% Assignment Requirements Fulfilled. The program runs correctly.
20% Divided equally among the items in the list below:
Only zipped folders or single files should be submitted to Blackboard. All files require the correct extensions. .py for Spyder IDE files or .ipynb
Zip multiple files in a folder to submit.
All submission folder and file names must include the student’s last name.
All individual files should have self documenting names.
All variables should have self documenting names.
Use of comments, including a comment block at the top of each file with your name and other details.
Include this sentence in the comment block at the top and type in your name:
I certify, that this computer program submitted by me is all of my own work. Signed: Your Name
All sources cited.
Correct spelling and grammar.
Neat, clearly presented code.
The class is likely to have students with different exposures to computer programming. You are not required to have any experience in Python. The important issue is how much you learn during our class. DAT 535 Session 1 Programming Assignment Week 1 & 2
Use one Jupyter Notebook file for all parts of the assignment.
Upload your .ipynb file to MyCourses
Part 1 – 20 points Type in these commands one cell at a time and then run each cell.
import seaborn as sns
sns.get_dataset_names () – This will produce the names of the seaborn datasets.
Choose one dataset to print and load. I chose the tips dataset and used the variable name plot.
plot = sns.load_dataset(‘tips’)
print(plot) Create a scatterplot as demonstrated in the Participation Activity Section 2.1.4
Choose your own x a -nd y values from the dataset column names.
Be sure to add some headings and comments to your code as shown at the end of Chapter 2.1
Part 2 – 20 pointsimport numpy as np
Create a one-dimensional numpy array with 9 integer elements. Use dtype ‘int16’
Print the array.
Print the second element of the array.
Use 10 other built in NumPy functions of your choice on the array and print the results.
Part 3 – 20 pointsImport the necessary modules and read in a csv file. The homes dataset contains 18 features giving the characteristics of 76 homes being sold. The modules will be used with the homes.csv file to perform a linear regression. Linear regression will be covered in a different chapter.
Import the NumPy and pandas packages with the aliases used in this material
Import the function LinearRegression from the sklearn.linear_model package
Read in the csv file homes.csv
Ex: If the csv file homes_small.csv is used instead of homes.csv, the output is:
The intercept of the regression is 249.522The slope of the regression is 36.758 -
Title: Securing the Network of a Fortune 500 Company: A Risk Assessment Approach Introduction In today’s digital age, cyber threats have become a major concern for businesses, especially for large organizations like Fortune 500 companies. These companies have
Please complete the scenario below following these guidelines for your deliverable.
Your assignment must be a minimum of 2 pages double spaced, plus a title page and a reference page for a total of 4 pages.
Make sure you are using at least two (2) academic references.
This submission should be created following APA 6th edition guidelines.
The paper is to follow the APA style guide, Sixth Edition (available via bookstores).
Also refer to APA’s online resources
and the APUS web site
Submit your assignment as a MSWord attachment.
Scenario:
You have been hired as a security consultant to secure the network of a Fortune 500 company.
1. Describe the purpose of a risk assessment , risk scope and identify critical areas for an assessment..
2. Select risk assessment methodology and give your rationale behind the one you chose. -
“Fundamentals of System Management Exam: Multiple Choice Questions”
i have 2 hours on the timer for my exam, i will send the multiple choice questions here, I need you to send the right answer. the subject is Fundamentals of system management
-
Title: Exploring Computer Systems: Architecture, Interfaces, and Peripherals
Question 1:
Compare and contrast the basic personal computer system, the typical smartphone system, and the mainframe computer system in terms of their architecture, capabilities, use cases, and impact on modern computing.
Start by providing an overview of each system, including their hardware components, operating systems, and typical specifications.
Explore the primary use cases for each system. How do these systems cater to different computing needs? Are there any overlapping functions or capabilities?
Analyze the architecture of these systems. What are the key design principles and characteristics that make each system unique? How do these architectures contribute to their performance and functionality?
Question 2:
Examine the fundamental interface components in an average computer system, and discuss their roles, significance, and interactions within the system.
Begin by identifying and describing the core interface components typically found in a computer. These may include the central processing unit (CPU), memory (RAM), storage devices (e.g., hard drives or SSDs), input/output devices (e.g., keyboard, mouse, monitor), and expansion slots or ports.
Discuss the specific functions and roles of each component. For example, what is the primary function of the CPU in processing data, and how does it interact with memory and storage devices?
Analyze the connections and data flow between these components. How do data and instructions travel between the CPU, memory, and storage? What is the role of input/output devices in facilitating user interaction with the computer?
Question 3:
Investigate the role of peripherals and the hierarchy of storage in an average computer system, and analyze how these elements contribute to overall system functionality and performance.
Begin by defining what peripherals are in the context of computer systems and providing examples of common input and output devices. Explain how peripherals enhance the user experience and extend the capabilities of a computer.
Explore the concept of the storage hierarchy in computing. Describe the various storage media and devices that make up this hierarchy, from the fastest and most volatile storage to the slowest but highest-capacity options.
RULES FOR ASSIGNMENTS
While preparing your MS Word document, you should follow the posted assignment policy guidelines -
Title: Understanding Contingency Approaches to Leadership and Individual Characteristics
1)450 words 2 responses Assigned Readings:
Chapter 3. Contingency Approaches to Leadership.
Chapter 4. The Leader as an Individual.
Initial Postings: Read and reflect on the assigned readings for the week. Then post what you thought was the most important concept(s), method(s), term(s), and/or any other thing that you felt was worthy of your understanding in each assigned textbook chapter.Your initial post should be based upon the assigned reading for the week, so the textbook should be a source listed in your reference section and cited within the body of the text. Other sources are not required but feel free to use them if they aid in your discussion.
Also, provide a graduate-level response to each of the following questions:
a)Consider the situational characteristics of group cohesiveness and physical separation. How might each of these substitute for or neutralize task-oriented or people-oriented leadership?Explain.
b)Hallmark Cards discovered that its mid- and upper-level managers were primarily thinking types, but top executives displayed primarily feeling preferences. Why do you think this might be?
2)Question in the given document please refere -
“Enhancing Customer Experience and Marketing Strategies for Gulf Taleed Commercial Services Company through CEGID, Salesforce, and Qualtrics Platforms”
please read the reports submitted and start from there, platforms should be mentioned:1- CEGID 2- Salesforce 3- Qualtrics. company name: Gulf Taleed Commercial Services Company. Marketing | Gulf Taleed Commercial Services Company | Riyadh.
please don’t mention PMI or any tobacco related. Word file should be between 3000-4000 words + presentation should be long enough about 10 min presenting time. APA reference and no plagiarism please. -
Managing Storage Devices and File Systems Page 1: File systems are essential components of an operating system as they enable users to store, manage, and retrieve files. Different operating systems support various compatible file systems, each with its unique purpose. Two
file systems are essential elements of an operating system (OS). Without file systems, it would be impossible to load applications or even to store data files. Whether in the home or in the office, you must understand what it takes to manage storage devices. You should be familiar with what is necessary to prepare devices that enable users to store, manage, and retrieve files. As covered in this unit’s learning materials, there are numerous file systems for each OS. In other words, each operating system supports several compatible file systems.
Create a 1-page MS Word document that contains the following:
Cover page (does not count toward the 1-page requirement) Your full name Course code, session, and section (e.g., ITCO-211-2203A-01) Submission date Assignment name (Unit 2 IP2) Page 1: Briefly describe 2 file systems; include their purpose. Reference page in APA format, if applicable (does not count towards the 1-page requirement).