You are a Data Scientist at Anthem Blue Cross Blue Shield. You want to check if a patient will develop diabetes. Please write the R code to split the dataframe into test and training data. The proportion of split is 85/15, and the sample stratification needs to be done on the variable - age.

Answers

Answer 1

Answer:

666

Explanation:

You are a Data Scientist at Anthem Blue Cross Blue Shield. You want to check if a patient will develop diabetes. Please write the R code to split the dataframe into test and training data. The proportion of split is 85/15, and the sample stratification needs to be done on the variable


Related Questions

Joseph wants to take out the color of the background wall from an image what can Joseph do to achieve this​

Answers

Answer:

Go to remove a background website

Explanation:

He can download an application IbisPaint X, use the magic wand tool and select the background and then press the outlined square and select the option clear layer

Write a function, AvgList, that takes a single argument, a list, and returns the average (mean) of the numbers in the list. You may assume that all elements of the list are numeric (int or float), and that the list has at least one element. Hints: Use the function SumList that you wrote above. Use the built-in function len to get the number of elements in the list.

Answers

Answer:

Answered below

Explanation:

//Programmed in Java

public double avgList(int [] nums){

int I;

double sumOfNumbers = 0;

double averageOfNumbers = 0;

//Loop over to sum all elements in the list.

for(I = 0; I < nums.length; I++){

sumOfNumbers += nums[I];

}

//Calculate the average

averageOfNumbers = sumOfNumbers/ nums.length;

return averageOfNumbers;

}

how do i remove my search history?

Answers

Step 1: Go to PC settings from the Start Menu or Desktop. Step 2: In PC settings, choose Search in the menu, and click Delete history.

Explain the term software dependability. Give at least two real-world examples which further elaborates
on this term. Do you think that we can ignore software from our lives and remain excel in the modern
era? What is the role of software in the current pandemic period?

Answers

Answer:

Explanation:In software engineering, dependability is the ability to provide services that can defensibly be trusted within a time-period. This may also encompass mechanisms designed to increase and maintain the dependability of a system or software.Computer software is typically classified into two major types of programs: system software and application software.

This unit is used to print the picture on a paper

Answers

Answer:a printer

Explanation:

It prints things

State the causes of the increase in carbondioxide
concerntration​

Answers

Answer:

The right response is "fossil fuels".

Explanation:

Fossil fuels such as coal as well as oil conduct electricity that has already been photosynthesized by vegetation or plant species from the ecosystem for thousands of generations.Within only several hundred years we've returned fuel to that same ecosystem or environment, the sources of CO₂ rise are fossil fuels.

However, the above solution is the right one.

Suppose Alice downloads a buggy browser that implements TLS incorrectly. The TLS specification says that, during the handshake, the browser should send a random 256-bit number RB. Instead of picking RB randomly the browser always sends all zeros. Describe an attack that is possible against this buggy browser and how to update the browser so that this attack is no longer feasible.

Answers

Solution :

It is given that Alice downloads the buggy browser which implements a TLS incorrectly. The specification of a TLS states that during a handshake, the browser sends a 256 bit number of RB randomly.

So in this case, a man-n-the-middle attack is possible. It can compromise the confidentiality of Alice. Updating the browser by visiting the website and checking its latest version of the browser or installing some other browser which has a more trust in the market for its security features.

What is the name for the part of a camera which can block light when it's closed, and let light in when it's open?


Pixel


Lens


Focus


Shutter

Answers

dnt listen to the link stuff

The following question is based on the following incomplete declaration of the class BoundedIntArray and its constructor definitions.

A BoundedintArray represents an indexed list of integers. In a BoundedIntArray the user can specify a size, in which case the indices range from 0 to size - 1. The user can also specify the lowest index, low, in which case the indices can range from low to low + size - 1.

public class BoundedIntArray
{

private int[] myItems; // storage for the list
private int myLowIndex; // lowest index
public BoundedIntArray(int size)
{

myItems = new int[size];
myLowIndex = 0;
}
public BoundedIntArray(int size, int low)
{
myItems = new int[size];
myLowIndex = low;
}
// other methods not shown
}
Consider the following statements.

BoundedIntArray arrl = new BoundedIntArray(100, 5);
BoundedIntArray arr2 = new BoundedIntArray(100);
Which of the following best describes arrl and arr2 after these statements?

a.
arrl and arr2 both represent lists of integers indexed from 0 to 99.
arrl and arr2 both represent lists of integers indexed from 0 to 99 . ,

b.
arrl and arr2 both represent lists of integers indexed from 5 to 104.
arrl , and, arr2 , , both represent lists of integers indexed from, 5 , to, 104, .,

c.
arrl represents a list of integers indexed from 0 to 104, and arr2 represents a list of integers indexed from 0 to 99.
arrl , represents a list of integers indexed from, 0 , to, 104, , and, arr2 , represents a list of integers indexed from, 0 , to, 99, ., ,

d.
arrl represents a list of integers indexed from 5 to 99, and arr2 represents a list of integers indexed from 0 to 99.
arrl represents a list of integers indexed from 5 to 99 , and arr2 represents a list of integers indexed from 0 to 99 . ,

Answers

Answer:

d.

Explanation:

Using the Java code provided, the creation of the BoundedIntArray objects would be that arrl represents a list of integers indexed from 5 to 99, and arr2 represents a list of integers indexed from 0 to 99. This is because arr1 is passing two arguments when it is being created, the first indicates the array size while the second indicates the lowest index. Since it passes two arguments it overrides the constructor and uses the constructor with two parameters. arr2 only passes one argument so it uses the original constructor which automatically sets the lowest index to 0.

The correct choice in this question is "arr1 is an array of numbers indexed from 5 to 104, while arr2 is an array of integers indexed from 0 to 99".

Array number:

arr1 is for numbers 5 to 104, whereas arr2 is for numbers 0 to 99.Since the lowest index in arr1 is transmitted, it should be 5, and the array size should be 100. The index of the last member inside an array is also (size-1) since the array's lowest index is inclusive.Furthermore, arr2 is for 0 to 99, so because size, which would be 100, if passed, the lowest index is not. As a result, the lowest index by default is 0.

Find out more about the Array here:

brainly.com/question/13107940

how does such editing affect courtrooms where visual evidence is often presented?​

Answers

Can hurt others..!! yw

my code get an input of 1900 and it should output not a leap year but it fails first line of code. It should output not a Leap any number with 1500 not divisble by 4 with/out a remainder should output (not a leap year. )


input_year = int(input())

if input_year % 4 == 0: #fails on this step, 1900 should be false
print(input_year, "- is Leap Year")

elif input_year % 100 == 0:
print(input_year, "- leap year")

elif input_year % 400 ==0:
print(input_year, "is a leap year")

else:
print(input_year, "- not a leap year")

Answers

Answer:

Explanation:

The code does not fail on the first step since 1900 divided by 4 is actually 475 and has no remainder, meaning that it should return True. The code won't work because the if statements need to be nested in a different format. The correct algorithm would be the following, which can also be seen in the picture attached below that if we input 1900 it would output is not a leap year as it fails on the division by 400 which gives a remainder of 0.75

input_year = int(input())

if input_year % 4 == 0:

   if input_year % 100 == 0:

       if input_year % 400 == 0:

           print(input_year, "is a leap year")

       else:

           print(input_year, "- not a leap year")

   else:

       print(input_year, "is a leap year")

else:

   print(input_year, "- not a leap year")

discuss file Management
With relevant examples.
in a Computer?​

Answers

Answer:

File management is the process of administering a system that correctly handles digital data. Therefore, an effective file management system improves the overall function of a business workflow. It also organizes important data and provides a searchable database for quick retrieval

Which step should you follow to copy a worksheet after clicking Format in the Cells group?
O Under Arrange Sheets, click Cut or Copy Sheet.
O Under Organize Sheets, click Move or Copy Sheet.
O Under Arrange Sheets, click Select and Move Sheet.
O Under Organize Sheets, click Arrange and Copy Sheet.

Answers

Answer:

Under Organize Sheets, click Move or Copy Sheet should you follow to copy a worksheet after clicking Format in the Cells group.

Explanation:

What are the vertical areas of the spreadsheet?

a
Verticies
b
Ventricals
c
Columns
d
Rows

Answers

Answer:

Columns

Explanation:

A spreadsheet may a explained as a tabular arrangement or arrays of cells which allows users to enter both numeric and string data for storage, manipulation and analysis. The spreadsheet program has both the vertical and horizontal cell arrangement with the vertical areas being reffered to as THE COLUMN which are labeled using alphabets arranged from A - AZ, AA - AZ, and so on to make up a total of 16384 columns on the Microsoft Excel spreadsheet program. Cells are located using a combination of column and row address. With row representing the horizontal area of the spreadsheet and labeled with digits. Therefore cells are usually refereed to as A1, (column A row 1) and so on.

Explain what an IM is,

Answers

Answer: Stands for "Instant Message." Instant messaging, or "IMing," as frequent users call it, has become a popular way to communicate over the Internet

Explanation:

Number the steps to describe how Tristan can complete
this task.
Cut the Television and related equipment row.
Paste the Television and related equipment row.
Click the plus sign on the left side of the table between
the last two rows.

Answers

Answer:

Cut the Television and related equipment row.Click the plus sign on the left side of the table between  the last two rows.Paste the Television and related equipment row.

Explanation:

In order to move the row, Tristan should first select the row and then cut it. This will ensure that the row will be moved completely instead of copied.

Tristan should then hover with the mouse between the last two rows and click on the plus sign on the left side. It will add a new row to the sheet. between the last two rows.

Tristan should then select the topmost cell and click paste. The television row will be pasted there and Tristan would have successfully moved it.

Answer:

2 3 1 Your Welcome

Explanation:

find four
reasons
Why must shutdown the system following the normal sequence

Answers

If you have a problem with a server and you want to bring the system down so that you could then reseat the card before restarting it, you can use this command, it will shut down the system in an orderly manner.

"init 0" command completely shuts down the system in an order manner

init is the first process to start when a computer boots up and keep running until the system ends. It is the root of all other processes.

İnit command is used in different runlevels, which extend from 0 through 6. "init 0" is used to halt the system, basically init 0

shuts down the system before safely turning power off.

stops system services and daemons.

terminates all running processes.

Unmounts all file systems.

Learn more about  server on:

https://brainly.com/question/29888289

#SPJ1

3. Never
to any instant messages, phone call, video call, or screen
staring requests from someone you do not know.
A. reply
B. refuse
C. forward text
D. accept pictures

Answers

Answer:

[tex]\color{Blue}\huge\boxed{Answer} [/tex]

B.Refuse

Answer:

Never reply to any instant messages, phone call, video call, or screen staring requests from someone you do not know.

Hope it helps u ARMY!!

wassup anybody tryna play 2k

Answers

Answer:

u dont want the smoke my boy u dont

Explanation:

Answer:

I only play 24k B)))))))))

Please rewrite and correct the following sentences:
1. Their dog ran away last night, and now their looking for him.
2. The company lost there biggest client last year.
3. Who is you going to the party with tonight?
4. The museums is open on Saturdays from 10am to 5pm.
5. Neither the boys or their father have any idea where the car keys is.

Answers

1.Their dog ran away last night, and now they are looking for him.

2. Their company lost their biggest client last year.

3. With whom you are going to the party with tonight?

4. The museums are open on saturdays from 10 am to  pm.

5. Fathers or Boys no one knows where the car keys are?

Thus, English has three tenses: past, present, and future. When writing about the past, we employ the past tense.

When writing about facts, opinions, or regular occurrences, we employ the present tense. To write about upcoming events, we utilize the future tense. Each of those tenses has additional characteristics, but we won't cover them in this session.

It's crucial to maintain the same tense throughout a writing endeavor after you've decided on one. To communicate yourself clearly, you may need to switch up the tense from time to time.

Thus, English has three tenses: past, present, and future. When writing about the past, we employ the past tense.

Learn more about Tenses, refer to the link:
https://brainly.com/question/29757932

#SPJ1

Write a template that accepts an argument and returns its absolute value. The absolute entered by the user, then return the total. The argument sent into the function should be the number of values the function is to read. Test the template in a simple driver program that sends values of various types as arguments and displays the results.

Answers

Answer:

In python:

The template/function is as follows:

def absval(value):

   return abs(value)

Explanation:

This defines the function

def absval(value):

This returns the absolute value of the argument using the abs() function

   return abs(value)

To call the function from main, you may use:

print(absval(-4))

True or false all foreign language results should be rated fails to meet

Answers

All foreign language results should be rated fails to meet is false.

Thus, A language that is neither an official language of a nation nor one that is often spoken there is referred to as a foreign language. Typically, native speakers from that country must study it consciously, either through self-teaching, taking language classes, or participating in language sessions at school.

However, there is a difference between learning a second language and learning a foreign language.

A second language is one that is widely used in the area where the speaker resides, whether for business, education, government, or communication. In light of this, a second language need not be a foreign language.

Thus, All foreign language results should be rated fails to meet is false.

Learn more about Foreign language, refer to the link:

https://brainly.com/question/8941681

#SPJ1


Open Office software is an example of what software

Answers

Answer:

Application software

Explanation:

OpenOffice.org (OOo), commonly known as OpenOffice, is a discontinued open-source office suite. ... OpenOffice included a word processor (Writer), a spreadsheet (Calc), a presentation application (Impress), a drawing application (Draw), a formula editor (Math), and a database management application (Base).

What is software and explain the five types of software

Answers

Question: What is software and explain the five types of software

Explanation: The system software which is controlled and managed by the use of set of instructions and programs is called software.

Ex: Windows 7/8/10/xp etc...

the  types of software are'

system software and application software

Android.

CentOS.

iOS.

Linux.

Mac OS.

MS Windows.

Ubuntu.

Unix.

Answer:

What is system software and explain its types?

System Software

A system software aids the user and the hardware to function and interact with each other. Basically, it is a software to manage computer hardware behavior so as to provide basic functionalities that are required by the user.

When someone refers to "space" on a computer or device, they are usually referring to _____, which allows the user to save a file for future use, even after the computer has been turned off. secondary storage the central processing unit (CPU) software primary memory

Answers

Answer:

it could either be the R.A.M or the hard drive

Explanation:

Answer:

Secondary Storage

Explanation:

Secondary storage is permanent, therefore, it fits the context of what the question is asking for.

A new office need 16 computer Tables.If a computer tables costs 2,671.How much is needed to purchase 16 computer tables.​

Answers

Answer:

The total amount needed to purchase the 16 computer tables is 42,736

Explanation:

Given;

Total number of computer tables needed in the new office, n = 16

cost of one computer table, c = 2,671

The total amount needed to purchase the 16 computer tables is calculated as follows;

Total cost of 16 computer tables = cost of one computer table x total number of tables needed

Total cost of 16 computer tables = 2,671 x 16

Total cost of 16 computer tables = 42,736

Therefore, the total amount needed to purchase the 16 computer tables is 42,736

Three reasons Why we connect speakers to computers

Answers

1. Some computers do not have speaker therefore we connect speakers

2. Some speakers don’t have clear audio so to fix that we connect new ones

3. What do you do if your speaker inside the computer is broken..... connect new speakers

Answer:

we connected speakers with computers for listening voices or sound .. because the computer has not their own speaker..

Explanation:

briefly explain 5 software which is either free or fee​

Answers

Answer:

65

Explanation:

Answer:

65

Explanation:

Provide an example of formula (with proper syntax) that would check whether cell B5 has a negative number, and return a value of "negative" if it was and "not negative" the value was zero or higher.

Answers

Answer:

The formula is:

=IF(B3<0,"negative","not negative")

Explanation:

The formula can be split as follows:

= --> This begins all excel formulas

IF --> This means that we are writing an IF condition formula

B3<0, ---> This is the condition being tested

"negative", ---> This is the result is the condition is true

"not negative" ---> This is the result is the condition is false

Programming a computer to win at chess
has been discussed since the
A. 1940's
B. 1950's
C. 1960's

Answers

I believe it was the 1960s but u should seach it up to double check

Answer:

B.

Explanation:

Other Questions
the executive office of the president is a bureaucracy how do formalized rules benefit The burning rates of two different solid-fuel propellants used in aircrew escape systems are being studied. It is known that the first and the second propellants have a population standard deviation of the burning rate as 3.1, and 4.2, respectively. A random sample of 20 observations from the first propellant and another random sample of 15 observations from the second propellant are tested; the sample mean of the burning rate of the first and the second propellant are 22 centimeters per second and 24 centimeters per second, respectively.A. Test the hypothesis if both propellants have the same mean burning rate at %10 significance level.B. Calculate P-Value.C. How could you answer part A by creating a proper two-sided confidence interval at 10% significance level. Direct materials used Direct labor Manufacturing overhead Total manufacturing costs Beginning work in process inventory Ending work in process inventory Sales revenue Sales discounts Cost of goods manufactured Beginning finished goods inventory Cost of goods available for sale Cost of goods sold Ending finished goods inventory Gross profit Operating expenses Net income 1 $9,700 5,100 8,400 23,200 1,100 7,200 25,000 2,600 17,100 5,000 22,100 18,600 3,500 3,800 2,800 1,000 (a) (b) (c) (d) (e) (f) Case $ 2 3,900 8,100 4,100 16,100 9,100 3,100 28,500 1,500 22,100 3,400 25,500 22,900 2,600 7,100 (g) 5,100 (h) (i) (j) (k) 2,000 (1) Prepare a condensed cost of goods manufactured schedule for Case 1. CASE 1 Cost of Goods Manufactured Schedule + + + + $ + $ $ All the following statements are incorrect, except .Select one: a. Financial ratios should be used in isolation b. Financial ratios aim to meet the needs of external users only c. Financial ratios are easy to interpret but difficult to calculate d. Financial ratios allow comparison and pinpoint some problem areas All of the following are essential components of a formal anti-money laundering program EXCEPT A) an independent audit function B) an accreditation program C) an employee training program D) policies, procedures, and internal controls for detecting and preventing money laundering Each question is worth 10 marks. 1. Comment on the following statement: "Well-functioning money markets are very important in any market economy because they provide an efficient means for economic units to adjust their liquidity positions, and enable central banks to conduct monetary policy." 2. In what ways stock indices are useful to investors? What are the reasons for the rise of index funds and exchange traded funds (ETFs)? 3. Coles, one of the two giant supermarkets in Australia, sells in-house baked bread, cakes and pastry. Thus, it has to purchase a reasonable amount of wheat every month. Amid recent rising wheat prices, it is looking for a way to protect itself. Suggest TWO possible derivatives contracts for Coles to hedge against price risk. Which one would be the best for Coles? 4. Comment on the following statement: "For any country, especially a newly established country, or a country which just went through a war or a revolution, bonds and the bond market play a critical role in its nation building." 5. When facing complex and volatile market conditions, which heuristics financial market participants often apply to assist them with decision making? 6. Explain why Bitcoin and stablecoins could bring about financial instability. give threeorderings of the keysa x c s e r hthat, when inserted into an initially empty bst, produce thebest-casetree. If I'm doing hypothesis testing on the amount (percentage) of americans who have a college degree, would I use p (the population proportion) or (The population mean) for the hypothesis? Then what tests would follow after? T stats or Z stats? what issues would exist with visual recognition of an object if a research participant had his/her corpus callosum severed? what would you need to do in order to observe these deficits? Auerbach Inc. issued 8% bonds on October 1, 2021. The bonds have a maturity date of September 30, 2031 and a face value of $475 million The bonds pay interest each March 31 and September 30, beginning March 31, 2022. The effective interest rate established by the market was 10% Assuming that Auerbach issued the bonds for $415,804,740, what interest expense would it recognize in its 2021 income statement? Utility = x1x2. P1 = 10 and P2 =5. Income (m) = $200. The original utility maximizing quantities are: x = = 10 and x2 =20. If the price of x increases to 15, the substitution effect will result Unpolarized light passes through two ideal Polaroid sheets. The axis of the first is vertical, and the axis of the second is at 30.0 to the vertical. What fraction of the incident light is transmitted? what is the solution for x2 4x > 77? a.x < 7 or x > 11 b.x < 11 or x > 7 c.7 < x < 11 d.11 < x < 7 use of the plus four method requires a confidence level of at least _____ percent. Jim is considering buying one of the following tractors for use in his farm: Tractor Estimated lifespan (years) Purchase price Annual maintenance cost A B 12 6 $50,000 $31,000 $4,400 $5,500 Maintenance costs are assumed to be paid at the end of each year within the tractor's estimated lifespan. The cost of capital is 8% per annum. (a) Calculate the equivalent annual costs (EACs) of the two tractors, and show that Jim should purchase tractor A based on this criterion. (b) It is known that buyers of tractor B can optionally purchase one of the following protection plans (at the time of tractor purchase): Gold Warranty Plan: Provides protection of the tractor for at most 8 years from the date of purchase. Platinum Warranty Plan: Provides protection of the tractor for at most 10 years from the date of purchase. Should a Warranty Plan be purchased, it is assumed that the estimated lifespan of tractor B will lengthen to the respective protection period, and maintenance costs will be payable until the end of the protection period. Based on the EAC criterion, calculate the price for each of the two Warranty Plans, below which it will be better for Jim to purchase tractor B instead. some pink flamingos are not flying birds. therefore, it is false that all pink flamingos are flying birds. T/F please help me this is kinda hard The Good Word Store reported the following figures: Retained Earnings, January 31, 2019. Retained Earnings, January 31, 2020.. Total Stockholders' Equity, January 31, 2019...........$30,000,000 Total Stockholders' Equity, January 31, 2020...$26,000,000 $39,000,000 $22,000,000 The company's fiscal year ends on January 31 each year. Dividends declared for the fiscal year ending January 31, 2020 are $14,000,000. What is the net loss for the fiscal year ending January 31, 2020? O $8,000,000 net loss O $17,000,000 net loss O $14,000,000 net loss O $3,000,000 net loss What two factors are best considered when establishing the Sprint length? (Choose two.)A. The organization has mandated similar length sprints.B. The level of uncertainty over the technology to be used.C. The frequency at which team formation can be changed.D. The risk of being disconnected from the stakeholders. A 7 x 7 chessboard is given with its four corners deleted. (a) What is the smallest number of squares which can be colored black so that an uncolored 5-square (Greek) cross cannot be found? (b) Prove that an integer can be written in each square such that the sum of the integers in each 5-square cross is negative while the sum of the numbers in all squares of the board is positive.