logo

Crowdly

Browser

Add to Chrome

The file  profits.csv includes data on profits and assets of 88 firms (some fir...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

The file profits.csv includes data on profits and assets of 88 firms (some firms having missing data). The variables in the data set are and , which are each firm’s profit and assets in million dollars, and which is a dummy variable which is equal to 1 if the CEO of the firm is not the owner of the firm, and is zero otherwise.

Use R to get the scatterplot of against . What does the scatterplot suggest?

profits <-- read.csv("profits.csv")

library(ggplot2)

ggplot(profits, aes(x = assets, y = profits)) + geom_point()
More questions like this

Want instant access to all verified answers on learning.monash.edu?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome