Great Deal! Get Instant $10 FREE in Account on First Order + 10% Cashback on Every Order Order Now

PROJECT PRE-INSTRUCTIONS & NOTES TO EXPERT Please read this first before starting on the project, 1. Use the following link to access the official project’s instructions:...

1 answer below »
PROJECT PRE-INSTRUCTIONS & NOTES TO EXPERT
Please read this first before starting on the project,
1. Use the following link to access the official project’s instructions: https:
docs.google.com/document/d/1u2asBX2jU5dn6inNiS8hN3xiUSpwJZuV4OaHsA5Heag/edit?usp=sharing
2. This project is a bit extensive but in summary, you’ll need to do the following:
a. Choose a product or service you wish to analyze, preferably U.S. based.
. Create survey items XXXXXXXXXXquestions), use Qualtrics to input said items.
c. By any means necessary, get 20 responses for these 8-10 survey items. (This part is very important!) Make sue to use the Item Types mentioned in instructions.
d. Once you have 20 responses for the survey, export data as a .csv for analysis.
e. If possible, utilize RStudio, and analyze the data according to the project’s instructions.
Note: Please review https:
dge
ing.github.io/R_lessR_Intro/ as the professor has created an R package called “lessR” to simplify analysis within R. However, if you are adept in R and know a better method within RStudio, you may do so. Additionally, you may use other computer application to visualize and analyze the data.
f. Create a write-up based on the data analysis of the product chosen & survey. Please follow the Report Format & Appendices sections within the instructions.
3. 3 pages - 750 words total should suffice. If amount exceeds, please reach out to requote more words. American-English
Answered 17 days After Mar 03, 2023

Solution

Banasree answered on Mar 21 2023
27 Votes
Q1Code:
    # Create data frame
data <- data.frame(
response = c("Useful", "Neither useful nor not useful", "Not useful"),
count = c(15, 3, 2)
)
# Create bar plot
arplot(data$count, names.arg = data$response, xlab = "Response", ylab = "Count", main = "Response Survey Results")
Output:
Q2Code:
    # Define survey_data variable
survey_data <- c("Agree", "Disagree", "Agree", "Neutral", "Strongly Agree", "Disagree")
# Create table of survey responses
table(survey_data)
# Create bar plot of survey responses
arplot(table(survey_data), main = "Survey Responses")
Output:
Q3Code:
    # Create data frame
data <- data.frame(
response = c("Strongly agree", "Somewhat agree", "Neither agree nor disagree", "Somewhat disagree", "Strongly disagree"),
count = c(11, 4, 3, 2, 0)
)
# Create bar plot
arplot(data$count, names.arg = data$response, xlab = "Response", ylab = "Count", main = "Question Tour Feedback")
Output:
Q4Code:
    # Create vector of ages
ages <- c("18-24 years old", "25-34 years old", "35-44 years old", "45-54 years old", "55-64 years old", "65+ years old")
# Create vector of counts
counts <- c(4, 3, 4, 4, 2, 3)
# Create table of age distribution
table(ages, counts)
# Create pie chart of age distribution
pie(counts, labels = ages, main = "Certification Age Distribution")
Output:
Q5Code:
    # Create a vector of response options
options <- c("Single-answer MCQs", "Multiple-answer MCQs", "Dropdown list MCQs", "Select box MCQs")
# Create a vector of counts
counts <- c(16, 1, 2, 1)
# Create a bar plot of the responses
arplot(counts, names.arg = options, main = "Prefe
ed MCQ Type", xlab = "MCQ Type", ylab = "Count")
Output:
Q9Code:
    # Create a matrix of response data
data <- matrix(c(55, 5, 0, 15, 25, 30, 60, 0, 5, 5, 20, 20, 20, 10, 50, 35, 20, 30, 10, 25), ncol = 5, byrow = TRUE)
colnames(data) <- c("1", "2", "3", "4", "5")
ownames(data) <- c("Single-answer MCQs", "Multiple-answer MCQs", "Single-line text entry Qs", "Essay box text entry Qs", "Rank order Qs")
# Create a stacked bar plot of the responses
arplot(data, beside = FALSE, legend = rownames(data), col = rainbow(ncol(data)), main = "Question Types Ranking", xlab = "Rank", ylab = "Percentage")
Output:
Q10Code:
    # Creating a matrix table using the data
data <- matrix(c(65, 25, 10, 0, 0,
50, 25, 5, 20, 0,
55, 25, 15, 5, 0), nrow = 3, byrow = TRUE)
colnames(data) <- c("Strongly agree", "Somewhat agree", "Neither agree nor disagree", "Somewhat disagree", "Strongly disagree")
ownames(data) <- c("I can build the kind of questions necessary to collect the feedback I need...",
"Qualtrics provides a flexible survey tool that can be configured to meet my...",
"I can use a variety of question types to accomplish my research goals")
# Bar plot of the matrix table
arplot(data, beside = TRUE, legend.text = TRUE,
main = "Survey Feedback",
xlab = "Survey Questions",
ylab = "Percentage",
col = c("darkgreen", "green", "yellow", "red", "darkred"))
Output:
Q12_part 1Code:
    # Create a data frame with the survey...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here