Question

Question: What is one type of graph that can list "two quantitative and one catagorical" data?...

Question: What is one type of graph that can list "two quantitative and one catagorical" data? PLEASE HELP!

Homework Answers

Answer #1

Two quantitative and one categorical, so a scatterplot with the categorical variable distinguished by colour (or some other way).

Consider an example in R software : Its just an example. Please look for the code while applying in R. "ggplot" is that plot where two quantitative and one categorical data can be plotted

library(MASS)
library(car)

my_url="https://www.utsc.utoronto.ca/~butler/d29/kite.csv"
kite=read_csv(my_url)

install.packages("ggplot2")

library(ggplot2)

ggplot(kite, aes(x=wing_length, y=tail_length, colour=sex))+geom_point()

The two quantitative variables are both responses, so they can be on either axis. Thus, this:
ggplot(kite, aes(x=wing_length, y=tail_length, colour=sex))+geom_point()

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
A normal model can be used for any list of quantitative data which has no outliers....
A normal model can be used for any list of quantitative data which has no outliers. true or false explain
Classifying Data by Type: determine whether the data are qualitative or quantitative. Explain your reasoning. •...
Classifying Data by Type: determine whether the data are qualitative or quantitative. Explain your reasoning. • The zip codes of a sample of 675 customers at a dollar store • The 1990 revenues of the companies on the Fortune 500 list • The marital statuses of all professional footballers
Post a graph you’ve found in the popular media. What type of data is represented (type...
Post a graph you’ve found in the popular media. What type of data is represented (type of scale) and what type of graph is it? Which statistic would you use to analyze the data in the graph?
“Please type, don't write (except drawing graph).” Question C1 Describe the two things that limit the...
“Please type, don't write (except drawing graph).” Question C1 Describe the two things that limit the precision of the central bank’s control of the money supply and explain how each limits that control.
Post a graph you’ve found in the popular media from 2018. What type of data is...
Post a graph you’ve found in the popular media from 2018. What type of data is represented (type of scale) and what type of graph is it? Which statistic would you use to analyze the data in the graph?
What type of data should be collected to compare the likelihoods of two candidates winning their...
What type of data should be collected to compare the likelihoods of two candidates winning their elections when the candidates are running in different elections? a. Independent sampling with quantitative data. b. Independent sampling with qualitative data. c. Matched-pairs sampling with qualitative data. d. Matched-pairs sampling with quantitative data.
Collect some quantitative data (if your data from week 1 is quantitative, you can use it)....
Collect some quantitative data (if your data from week 1 is quantitative, you can use it). Find the sample mean and standard deviation. Plot it in a histogram. Does the data seem to follow the bell curve of the normal distribution? What features of the data do or do not fit in with the shape of the normal curve. How much deviation from the curve is to be expected?
- Classifying Data by Type: determine whether the data are qualitative or quantitative. Explain your reasoning.  ...
- Classifying Data by Type: determine whether the data are qualitative or quantitative. Explain your reasoning.   The monthly salaries of the employees at an engineering firm The Social Security numbers of the employees at an engineering firm The ages of a sample of 330 employees of a engineering company
Draw one labeled graph of two myograms: a single twitch contraction for a Type 1 (slow)...
Draw one labeled graph of two myograms: a single twitch contraction for a Type 1 (slow) fiber, and one for a Type 2X (fast) fiber: Label the axes, and stimulus, lag, contraction, and relaxation phases, with appropriate relative lengths and amplitudes. THEN explain what Ca2+ ions are doing in the contraction phase versus the relaxation phase.
Data Structures using C++ Consider the definition the following function template: template <class Type> Type func(Type...
Data Structures using C++ Consider the definition the following function template: template <class Type> Type func(Type list[], int size) {        Type x = list[0];        Type y = list[size - 1];        for (int j = 1; j < size / 2; j++)        {               if (x < list[j])                      x = list[j];               if (y > list[size - 1 - j])                      y = list[size - 1 - j];        }        return x + y; }...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT