Questions
Please use R studio Dataset: IBM HR Analytics Employee Attrition & Performance dataset (you can download...

Please use R studio

Dataset: IBM HR Analytics Employee Attrition & Performance dataset (you can download the dataset from kaggle)

Name

Description

ATTRITION

Employee leaving the company (0=no, 1=yes)

BUSINESS TRAVEL

(1=No Travel, 2=Travel Frequently, 3=Tavel Rarely)

DEPARTMENT

(1=HR, 2=R&D, 3=Sales)

EDUCATION FIELD

(1=HR, 2=LIFE SCIENCES, 3=MARKETING, 4=MEDICAL SCIENCES, 5=OTHERS, 6= TEHCNICAL)

GENDER

(1=FEMALE, 0=MALE)

JOB ROLE

(1=HC REP, 2=HR, 3=LAB TECHNICIAN, 4=MANAGER, 5= MANAGING DIRECTOR, 6= REASEARCH DIRECTOR, 7= RESEARCH SCIENTIST, 8=SALES EXECUTIEVE, 9= SALES REPRESENTATIVE)

MARITAL STATUS

(1=DIVORCED, 2=MARRIED, 3=SINGLE)

OVER 18

(1=YES, 2=NO)

OVERTIME

(0=NO, 1=YES)

The Variable Attrition is what we plan to use as our dependent variable. The variable contains a Yes if they stay with IBM and ‘No’ if they do not. We need to create this into a binary dummy variable with 0 if they do not stay with IBM (Attrition = ‘No’) and 1 if they do stay with IBM (Attrition = ‘Yes’). This will also need to be done to the variable Gender and OverTime. Gender we can assign “Male” to zero and “Female” to one. For OverTime we will assign 0 for “No” and 1 for “Yes”.

Create Pivot tables instead of correlation matrixes for categorical variables and do the data analysis.

For data analysis:

  • Describe the data using the techniques above (e.g. “We can see in this scatter plot that there is a positive correlation between the number of hours in which the patient exercised per week and his/her weight loss.”). About one page without the images.

  • Based on these observations, draw some insights. (e.g. “We believe the patient is burning calories when exercising, thus contributing to the loss of weight”). About one page.

  • State actionable experiments based upon your insights. (e.g. “We will use multiple regression that includes hours exercised as an explanatory variable to model weight loss. We expect…”)

In: Computer Science

Considering the following different search trees, binary search trees, AVL trees, red-black trees, and others. Compare...

Considering the following different search trees, binary search trees, AVL trees, red-black trees, and others. Compare their advantages and disadvantages, running times, etc

In: Computer Science

Write a program in C++ to read 10 numbers from keyboard and find their sum, average,...

Write a program in C++ to read 10 numbers from keyboard and find their sum, average, maximum and minimum

In: Computer Science

The primary role citric acid cycle is to collect high energy electrons from the oxidation of...

The primary role citric acid cycle is to collect high energy electrons from the oxidation of carbons in the form of NADH and FADH2. If the electron transport chain is inhibited, would you expect the citric acid cycle to be more active or less active? Explain your answer.

In: Biology

Discuss the concept of environmental sustainability and explain its dimensions, From your perspective, discuss possible effects...

Discuss the concept of environmental sustainability and explain its dimensions, From your perspective, discuss possible effects of operating with environmental sustainability on competitiveness. Explain those factors that might intervene to affect the role of environmental sustainability on marketing performance.

In: Operations Management

Higher Education is in crisis? How can we be positive leaders amidst the chaos we see...

Higher Education is in crisis? How can we be positive leaders amidst the chaos we see at our institutions? Is it unrealistic or just challenging? Does it take a miracle or just a change in mindset?

In: Psychology

USING JAVA, PLEASE MAKE THIS AS SIMPLE AS POSSIBLE, THIS IS AN INTRODUCTORY JAVA COURSE 1....

USING JAVA, PLEASE MAKE THIS AS SIMPLE AS POSSIBLE, THIS IS AN INTRODUCTORY JAVA COURSE

1. Design and implement a class called PairOfDice.

The class should include:

a. A non-default constructor, i.e. with parameters

b. A setter method for each instance data

c. A getter method for each instance data

d. A method roll() that rolls both dice

e. A toString() method that returns a string containing the colors of both dice, eg "Colors of both dice: Red,Blue "

f. A method pairSum that returns the current sum of the two die values. (in PairOfDice.java)

2. Write an application TestPairDice that uses the PairOfDice class to create a pair of dice. The application prints to the screen the sum of their face values. The program then rolls the pair of dice and prints to the screen the new sum of their face and the colors of both dice. (TestPairOfDice.java)

SAMPLE OUTPUT: Sum of face values before roll: 7

Sum of face values after roll: 6

Color of both dice: Red,Blue

In: Computer Science

Write a program in C++ to display the multipliaction table vertically from 1 to n (use...

Write a program in C++ to display the multipliaction table vertically from 1 to n (use setw to format the output).
1x1 = 1, 2x1 = 2, 3x1 = 3, 4x1 = 4, 5x1 = 5, 6x1 = 6, 7x1 = 7, 8x1 = 8
...
1x10 = 10, 2x10 = 20, 3x10 = 30, 4x10 = 40, 5x10 = 50, 6x10 = 60, 7x10 = 70, 8x10 = 80

In: Computer Science

13. In your opinion, what are the three more important resources to manage in an organization?...

13. In your opinion, what are the three more important resources to manage in an organization? Explain in detail the logic of your answer.

14. Concepts such as ‘socio-technology,’ ‘technology-structure,’ ‘technology-system;’ what do they have in common? Provide examples

15. Provide an example of Competitive Advantage and of Comparative Advantage. Explain the difference between them.

In: Operations Management

Q1. a. Illustrate mathematically how to convert the following Binary number into Decimal Number system. 101112...

Q1. a. Illustrate mathematically how to convert the following Binary number into Decimal Number system.

101112 = ?10

(11.10)2= ?10

(100011.011)2 = ?10

______________________________

b. Illustrate mathematically how to convert following decimal number into binary Number system.

(345)10 = ?2

(45.25)10 = ?2

______________________________

c. Illustrate mathematically how to convert the following Octal number into Decimal Number system.

278 = ?10

308 = ?10

______________________________

d. Illustrate mathematically how to convert the following Hexadecimal number into Decimal Number system.

(2F)16 = ?10

(BCC)16 = ?10

(2F. A2)16 = ?10

______________________________

e. Illustrate mathematically how to convert following Binary number into Octal Number system.

101012 = ?8

(11100.11)2= ?8

______________________________

f. Illustrate mathematically how to convert the following Binary number into Hexadecimal Number system.

101012 = ?16

(11100.11)2= ?16

(100011.011)2 = ?16

_______________________________

g. Solve and write the result of sum for given hexadecimal number

B D 5

+ A A B

--------------------

A D 5

+ F E C

--------------------

Solve and write the result of subtraction for given hexadecimal number

B D 5

- A A B

--------------------

B C 9

- E F C

--------------------

- A F 4

A B C

--------------------

In: Computer Science

Rachel purchased a car for $22,500 three years ago using a 4-year loan with an interest...

Rachel purchased a car for $22,500 three years ago using a 4-year loan with an interest rate of 7.2 percent. She has decided that she would sell the car now, if she could get a price that would pay off the balance of her loan.

What is the minimum price Rachel would need to receive for her car? Calculate her monthly payments, then use those payments and the remaining time left to compute the present value (called balance) of the remaining loan. (Do not round intermediate calculations and round your final answer to 2 decimal places.)

Minimum price= _________________

In: Finance

Write a program in C++ to display the following patterns: * ** *** **** 1 12...

Write a program in C++ to display the following patterns:
*
**
***
****

1
12
123
1234

1
22
333
4444

1
2 3
4 5 6
7 8 9 10

1
2 3
4 5 6
7 8 9 10

*
***
*****
*******
*********
*******
*****
***
*

In: Computer Science

How much heat, in kJ, is absorbed by a 77.0 g sample of aluminum at 25.0°C...

How much heat, in kJ, is absorbed by a 77.0 g sample of aluminum at 25.0°C when it is immersed in boiling water? The specific heat capacity of aluminum is 0.900 J/g°C and the specific heat capacity of water is 4.184 J/g°C. Enter your answer with no units.

Need some help on this one. Please show work/relevant formulas. Thanks for any help!

In: Chemistry

Which of the following might suggest that a topic or point in a lecture is important....

Which of the following might suggest that a topic or point in a lecture is important. Check all that apply?

A) A fellow classmate writes it down.

B) The instructor writes it on the board.

C) It’s the funniest thing in the lecture.

D) The instructor looks down at her notes before saying it.

In: Psychology

Write a program in C++ to check whether a number is prime or not

Write a program in C++ to check whether a number is prime or not

In: Computer Science