• Statistics And Probability

Assignment 4: Statistical Analyses

statistical analysis 1 assignment 4

Related documents

Appendix S1 This appendix provides a step-by

Add this document to collection(s)

You can add this document to your study collection(s)

Add this document to saved

You can add this document to your saved list

Suggest us how to improve StudyLib

(For complaints, use another form )

Input it if you want to receive answer

Attention! Your ePaper is waiting for publication!

By publishing your document, the content will be optimally indexed by Google via AI and sorted into the right category for over 500 million ePaper readers on YUMPU.

This will ensure high visibility and many readers!

illustration

Your ePaper is now published and live on YUMPU!

You can find your publication here:

Share your interactive ePaper on all platforms and on your website with our embed function

illustration

Assignment 4: Statistical Analyses

  • statistical
  • descriptive
  • inferential
  • correlations
  • hci.cs.wisc.edu

hci.cs.wisc.edu

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

<strong>Assignment</strong> 4: <strong>Statistical</strong> <strong>Analyses</strong><br />

<strong>Assignment</strong> Description<br />

In this assignment, you will practice methods you learned in class for descriptive and<br />

inferential statistical analyses. You will use the data you collected and the scales you<br />

constructed in the previous assignment (<strong>Assignment</strong> 3; Scale Construction) as a basis<br />

for your analysis. The methods I would like you to practice in this assignment are<br />

calculating descriptive statistics for the populations you are studying, correlations<br />

among your scales, and inferential analysis using appropriate t-tests or analyses of<br />

variance. Finally, you will report the findings from your analyses following APA<br />

guidelines. The lecture slides on statistical analysis also provides examples of how to<br />

report results of a correlation or inferential test. The handout provides the list of R<br />

functions that you will need to use to complete the assignment. You can choose to<br />

use JMP to complete the assignment. Please refer to the last two lectures on statistics<br />

for descriptions and example uses of the JMP functions that correspond to those<br />

provided here.<br />

The expected outcome of this assignment is a one-page write-up of the process you<br />

followed in and findings from your analysis following the APA guidelines. Please attach<br />

to your report the .csv data file and R functions you used and their outputs in a .txt<br />

file. If you used JMP, please provide the .jmp data file and the model output as an .rtf<br />

file as attachments. To save the model output in JMP, select Edit > Journal and File ><br />

Export into an .rtf file. Send your submission following the naming convention<br />

“<strong>Assignment</strong>4-StudentLastName.zip.” Further directions are provided on the last page<br />

of this handout.<br />

Resources<br />

The following resources might be useful in completing your assignment.<br />

Related Lectures:<br />

Descriptive Statistics, Correlations, Unpaired and Paired T-tests<br />

Analysis of Variance, Contingency Analysis<br />

R Project Website, Reference Guide, Descriptive Statistics, Correlations, T-tests, ANOVA<br />

JMP Website, Getting Started in JMP, Tutorials<br />

Quick reference to APA guidelines for reporting results from statistical analyses<br />

APA formatting and style guide<br />

<strong>Assignment</strong> submission template<br />

CS/Psych-770 <strong>Assignment</strong> 4 – <strong>Statistical</strong> <strong>Analyses</strong> Page 1 of 7

Step 1. Descriptive Statistics<br />

The first set of analyses you will do with your data is what is called descriptive<br />

statistics. The goal of this form of analysis is to create quantitative summaries of your<br />

dataset. Descriptive statistics inform us on average measurements of a scale or item,<br />

how much these measurements vary across observations, the range of<br />

measurements, and other aspects you might want to know about your data. This form<br />

of analysis also includes creating visual representations of your data as box plots, bar<br />

graphs, pie charts, histograms, and scatterplots. Visual tools help the researcher identify<br />

anomalies, outliers, and trends in data.<br />

R provides a host of methods to conduct descriptive statistics and create visual<br />

representations of your data. The following method from the “psych” package<br />

provides a full list of descriptive statistics for a given dataset.<br />

library(psych)<br />

describe(mydata_scales)<br />

describe.by(mydata_scales, mydata_conditions)<br />

R also provides a host of visualization options. Below are methods for creating some<br />

of the most common forms of descriptive visualizations. You can copy the graphs you<br />

create in R simply by copying them in R and pasting them in your Word Processor.<br />

boxplot(mydata_scales)<br />

hist(mydata_scales$scale)<br />

plot(density(mydata_scales$scale))<br />

barplot(table(mydata_scales$scale))<br />

barplot(table(mydata_conditions, mydata_scales$scale))<br />

barplot(table(mydata_conditions, mydata_scales$scale), beside=TRUE)<br />

Step 1 – Study your dataset using descriptive statistics and visualization methods in R or<br />

JMP. Note down any anomalies, outliers, or extreme skews or multimodalities in your<br />

distributions that you can identify using these methods.<br />

CS/Psych-770 <strong>Assignment</strong> 4 – <strong>Statistical</strong> <strong>Analyses</strong> Page 2 of 7

Step 2. Correlations<br />

Next you will study how the scales and items in your data might correlate with each<br />

other. The goal of looking at correlations is to identify relationships between your<br />

measurements and suggest possible causal relationships. For instance, you might have<br />

measured how much people trust a particular kind of technology and how often they<br />

shop online. You might find that these two measures are highly correlated, suggesting<br />

that shopping online and trusting technology might have some relationship or might<br />

be affected by a shared latent variable. These suggestions inform further studies or<br />

analyses of your data. For instance, you might split your population into two groups as<br />

frequent online shoppers and infrequent online shoppers and conduct inferential<br />

statistics to test whether how much people shop has an effect on how much they<br />

trust technology.<br />

The most common measure of correlation between variables is “Pearson's<br />

correlation” calculated by dividing the covariance between the two measures by the<br />

product of their standard deviations. This operation creates an r-value (Pearson<br />

product-moment correlation coefficient), ranging from -1 to 1 where -1 represents a<br />

strong negative relationship, 0 represents no relationship, and 1 represents strong<br />

positive relationship between the two variables. However, we cannot make a<br />

conclusive statement on the relationship between these variables simply by looking at<br />

the r-value, because the r-value is extremely sensitive to the data distribution and<br />

population size. We can, however, conduct a significance test to whether a correlation<br />

is significant given its data distribution and population size. Significant tests produce<br />

reliable results with sample sizes above 50.<br />

R provides methods to calculate correlations and significance tests. Below are<br />

commands that will help you calculate r-values and p-values for significant-testing.<br />

cor(mydata_scales, use="complete.obs", method="pearson")<br />

library(Hmisc)<br />

rcorr(as.matrix(mydata_scales), type=”pearson”)<br />

Step 2 – Identify correlations among your scales using R or JMP. Report high correlations<br />

with r-values and p-values.<br />

CS/Psych-770 <strong>Assignment</strong> 4 – <strong>Statistical</strong> <strong>Analyses</strong> Page 3 of 7

Step 3. Inferential Statistics<br />

The final step in this assignment is to test hypotheses about your data using inferential<br />

tests. You will be using these tests to identify how your categorical variables affect your<br />

scales or response variables. As we discussed in class, what inferential test you should<br />

be using will depend on your experimental design. The decision map below will help<br />

you choose the appropriate test for your purposes.<br />

One-way ANOVA<br />

One-way repeated<br />

measures ANOVA<br />

Unpaired t-test<br />

Paired t-test<br />

2+ independent<br />

samples<br />

2+ dependent<br />

2 independent<br />

2 dependent<br />

Single-<br />

Factor<br />

Design<br />

Factorial<br />

Within<br />

participants<br />

Mixed-model<br />

Between<br />

Multi-way repeated<br />

ANOVA<br />

Multi-way<br />

The first step in conducting your inferential analysis is to determine your null and<br />

alternative hypotheses. A null hypothesis suggests that your independent variables do<br />

not have any effect on your dependent variables or response variables. An alternative<br />

hypothesis suggests an effect. In your analysis, you will have to identify the “direction”<br />

of the effect suggested by your alternative hypothesis. For instance, if you have a<br />

univariate design with 2 independent samples, your alternative hypothesis has to<br />

identify whether the treatment condition in your independent variable will cause an<br />

increase, decrease, or simply a change in your dependent variable. If the alternative<br />

hypothesis suggests an increase, this analysis will use a one-tailed unpaired t-test.<br />

R provides all the tools you will need to conduct inferential tests. Below is a list of<br />

functions that you can use to conduct these tests. Alternatively, you can use JMP.<br />

Examples of the use of these functions and descriptions and examples of<br />

corresponding JMP tests are provided in the related lectures. If your experiment has a<br />

multivariate design (i.e., more than one factors), you also need to conduct post-hoc<br />

analyses to make pairwise comparisons across conditions.<br />

Unpaired, one-tailed t-test — Use to compare two between-participants conditions<br />

where the alternative hypothesis suggests that the treatment condition causes an<br />

increase in the dependent variable:<br />

t.test(mydata_scales~mydata_conditions, alternative="less", paired =<br />

FALSE, var.equal=TRUE, conf.level=.95)<br />

Paired, one-tailed t-test — Use to compare two within-participants measurements<br />

(e.g., before stimuli and after stimuli) where the alternative hypothesis suggests that<br />

the stimuli causes an increase in the dependent variable:<br />

t.test(mydata_scales$measurement1, mydata_scales$measurement2,<br />

alternative="less", paired=TRUE, conf.level=0.95)<br />

One-way, between-participants ANOVA — Use to compare more than two<br />

between-participants samples. Tukey’s HSD test can be used to conduct pairwise<br />

comparisons between conditions.<br />

model = aov(mydata_scales~mydata_conditions, data=dataFile)<br />

summary(model)<br />

TukeyHSD(model)<br />

CS/Psych-770 <strong>Assignment</strong> 4 – <strong>Statistical</strong> <strong>Analyses</strong> Page 4 of 7

One-way, within-participants ANOVA — Use to compare more than two withinparticipants<br />

samples. Tukey’s HSD test can be used to conduct pairwise comparisons<br />

between conditions; in this case, using “generalized linear models.”<br />

model = aov(mydata_scales~mydata_conditions+Error(Subject/<br />

mydata_conditions), data=dataFile)<br />

Step 4. Reporting Using APA Guidelines<br />

The APA (American Psychological Association) provides a style guide for academic<br />

writing in social sciences and HCI research follows these guidelines. In this assignment,<br />

you will write a report of your findings that resembles the “Results” section of an<br />

empirical paper and follow these guidelines. The “Resources” section of this handout<br />

provides links to APA style guides. The lecture slides on statistical analysis also provides<br />

examples of how to report results of a correlation or inferential test.<br />

Step 4 – Write up your results from all three sets of analyses you applied to your data.<br />

Follow APA guidelines for reporting statistical results and creating graphics.<br />

CS/Psych-770 <strong>Assignment</strong> 4 – <strong>Statistical</strong> <strong>Analyses</strong> Page 6 of 7

Final Step. Write-Up<br />

Write a one-page report of your results. This report should resemble the “Results”<br />

section of an empirical paper and follow the assignment template. For examples on<br />

reporting statistical tests and results, you can refer to the links provided on the first<br />

page of this handout, the slides for lectures on statistics, and the papers we have<br />

discussed in class as examples. Be sure to follow in your submission the naming<br />

convention “<strong>Assignment</strong>4-StudentLastName.zip” and include the following:<br />

In your write-up as a .docx file;<br />

• Results from descriptive analyses,<br />

• Results from correlational tests,<br />

• Results from inferential tests,<br />

• Tables or figures supporting descriptive and inferential tests,<br />

As appendices included in the .zip file;<br />

• If you use R, the .csv data file and a .txt file with a list of the R commands you<br />

ran and the outputs.<br />

• If you use JMP, the .jmp data file and a single .rtf file with the outputs from your<br />

tests.<br />

E-mail your assignments to [email protected].<br />

Grading Criteria (5 points total)<br />

Calculating descriptive statistics (0.5/0.5)<br />

Calculating correlations (0.5/0.5)<br />

Conducting inferential tests (2/2)<br />

Determining the appropriate test for the required analysis (0.5/0.5)<br />

Conducting appropriate tests, pairwise comparisons, and model simplification<br />

(if necessary) (1/1)<br />

Creating graphics to visually support the results (0.5/0.5)<br />

Following APA guidelines in reporting all results (1/1)<br />

Quality of the report (1/1)<br />

CS/Psych-770 <strong>Assignment</strong> 4 – <strong>Statistical</strong> <strong>Analyses</strong> Page 7 of 7

  • More documents
  • Recommendations

hci research methods - Wisconsin Human-Computer Interaction ...

<strong>Assignment</strong> 4: <strong>Statistical</strong> <strong>Analyses</strong> <strong>Assignment</strong> Description In this assignment, you will practice methods you learned in class for descriptive and inferential statistical analyses. You will use the data you collected and the scales you constructed in the previous assignment (<strong>Assignment</strong> 3; Scale Construction) as a basis for your analysis. The methods I would like you to practice in this assignment are calculating descriptive statistics for the populations you are studying, correlations among your scales, and inferential analysis using appropriate t-tests or analyses of variance. Finally, you will report the findings from your analyses following APA guidelines. The lecture slides on statistical analysis also provides examples of how to report results of a correlation or inferential test. The handout provides the list of R functions that you will need to use to complete the assignment. You can choose to use JMP to complete the assignment. Please refer to the last two lectures on statistics for descriptions and example uses of the JMP functions that correspond to those provided here. The expected outcome of this assignment is a one-page write-up of the process you followed in and findings from your analysis following the APA guidelines. Please attach to your report the .csv data file and R functions you used and their outputs in a .txt file. If you used JMP, please provide the .jmp data file and the model output as an .rtf file as attachments. To save the model output in JMP, select Edit > Journal and File > Export into an .rtf file. Send your submission following the naming convention “<strong>Assignment</strong>4-StudentLastName.zip.” Further directions are provided on the last page of this handout. Resources The following resources might be useful in completing your assignment. Related Lectures: Descriptive Statistics, Correlations, Unpaired and Paired T-tests Analysis of Variance, Contingency Analysis R Project Website, Reference Guide, Descriptive Statistics, Correlations, T-tests, ANOVA JMP Website, Getting Started in JMP, Tutorials Quick reference to APA guidelines for reporting results from statistical analyses APA formatting and style guide <strong>Assignment</strong> submission template CS/Psych-770 <strong>Assignment</strong> 4 – <strong>Statistical</strong> <strong>Analyses</strong> Page 1 of 7

  • Page 2 and 3: Step 1. Descriptive Statistics The
  • Page 4 and 5: Step 3. Inferential Statistics The
  • Page 6 and 7: Step 4. Reporting Using APA Guideli

Extended embed settings

Inappropriate

You have already flagged this document. Thank you, for helping us keep this platform clean. The editors will have a look at it as soon as possible.

Mail this publication

Delete template.

Are you sure you want to delete your template?

For this magazine there is no download available

Magazine: Assignment 4: Statistical Analyses

Save as template?

logo

  • Help & Support
  • tuxbrain.com
  • ooomacros.org
  • nubuntu.org
  • Terms of service
  • Privacy policy
  • Cookie policy
  • Cookie settings

statistical analysis 1 assignment 4

Choose your language

Main languages

Further languages

  • Bahasa Indonesia

Performing this action will revert the following features to their default settings:

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!

Group Assignment-Statistical analysis report(1)

120 - Product Research Assignment 11.docx

120 - Product Research Assignment 11

BSBMKG542 Task 2 Knowledge Questions V1.0522 fillable.docx

BSBMKG542 Task 2 Knowledge Questions V1.0522 fillable

UNV-103-RS-T3_YourGCUExperience_TO.docx

UNV-103-RS-T3YourGCUExperienceTO

Employability.docx

Employability

Vaz_week1discussion_MBA5001.docx

Vazweek1discussionMBA5001

Q1.docx

Pierrine.TumsonM5SITXWHS001

Oracle specific(1).pdf

Oracle specific(1)

Assignment+#2+-+Personal+Awareness+-+Part+1+-+PMPG+5005+-+W23.pdf

Assignment+#2+-+Personal+Awareness+-+Part+1+-+PMPG+5005+-+W23

QSO 300 Final Project - Melissa Heading.docx

QSO 300 Final Project - Melissa Heading

2 - The Nature and Influence of the WB DB PRoject.pdf

2 - The Nature and Influence of the WB DB PRoject

Unit8_individual assignment.docx

Unit8individual assignment

Assignment on Statistical Analysis

Statistical analysis is used to interpret quantitative data in order to discover its underlying relationships and causes. Assignments on statistical analysis are often prepared by individuals. They keep on searching material for their assignments which consumes a lot of their time. Keeping this in mind, Researchomatic is providing various statistical analysis assignments. Individuals will surely find these assignments useful and can prepare their statistical analysis assignments easily.

Data Analysis

  • Click to Read More

Hypothesis Testing

Hiv/aids, attitudes, related behaviors and sources of information among koreans, relationship between amount charges against the income levels and household size, usage of alcohol and smoking, bottling company case study, factors that effect car sales, cancer among males & females globally, the average tenure of employees working at call centres, correlation between gpa and high school percentile, generate free bibliography in all citation styles.

Researchomatic helps you cite your academic research in multiple formats, such as APA, MLA, Harvard, Chicago & Many more. Try it for Free!

statistical analysis 1 assignment 4

IMAGES

  1. Statistical Analysis 1 Assignment 4.docx

    statistical analysis 1 assignment 4

  2. Statistics assignment 4

    statistical analysis 1 assignment 4

  3. PPT

    statistical analysis 1 assignment 4

  4. Statistics Chapter 1

    statistical analysis 1 assignment 4

  5. Statistical Analysis 1 Assignment 4.docx

    statistical analysis 1 assignment 4

  6. Statistics assignment 4

    statistical analysis 1 assignment 4

VIDEO

  1. Lec-1/Unit-5|Sampling and Testing of Hypothesis|Statistical Techniques-III Maths-4

  2. Statistics chapter3 Describing data stat P4

  3. Notations use in statistics ch 1 lec 10 Punjab board textbook part 1

  4. Mathematical and Statistical Analysis

  5. Statistical analysis of data question 2 and 3

  6. NPTEL ASSIGNMENT ELECTRICAL MACHINE -1 ASSIGNMENT 4 #nptel #swayam

COMMENTS

  1. Advanced Techniques for Statistical Analysis with R Software

    R software has become one of the most popular tools for statistical analysis in recent years. With its powerful features and user-friendly interface, it has become a favorite among statisticians and data analysts alike.

  2. SPSS vs Other Data Analysis Tools: A Comparative Review

    In the world of data analysis, having the right software can make all the difference. One popular choice among researchers and analysts is SPSS, or Statistical Package for the Social Sciences.

  3. How Are Statistics Used in Computer Science?

    Statistics in computer science are used for a number of things, including data mining, data compression and speech recognition. Other areas where statistics are use in computer science include vision and image analysis, artificial intellige...

  4. Statistical Analysis I MA260 Assignment 04.docx

    Statistical Analysis (MA260) Assignment 04 1. 01.2.3.4. BBBBBBBGBBGGBGGGGGGG GGGBGGBBGBBBGBGBBGBG GBBGBGGB a.Probability of 1 girl P (1 girl) = No. of

  5. Statistical Analysis 1 Assignment 4.docx

    View Homework Help - Statistical Analysis 1 Assignment 4.docx from MA 260 at Ashworth College. Statistical Analysis 1 MA260 Assignment #04 1) In families

  6. Assignment 4 (mas183) statistical analysis

    Assignment 4 (mas183) statistical analysis sem 2 2021 mas183 statistical data analysis semester 2021 assignment due 11:00 pm wednesday 27 october 2021 this.

  7. MA260 Week 3 module 4 mini study 1 staistics

    An introduction to basic statistics including descriptive and inferential statistics. This course will place emphasis on understanding statistical

  8. Assignment 4: Statistical Analyses

    The lecture slides on statistical analysis also provides examples of how to

  9. Assignment 4: Statistical Analyses

    The lecture slides on statistical analysis also provides examples ... 4 – <strong>Statistical</strong> <strong>Analyses</strong> Page 1 of 7

  10. Statistical Analysis

    Download Statistical Analysis - Assignment 4 | STAT 601 and more Statistics Assignments in PDF only on Docsity! 7-9 n = 36 3 2 12 8 12 1)113( 12 1)1( 2 2 )

  11. Data Analysis: Assignment 4 Flashcards

    Statistical inference makes statements about ____. Tap the card to flip ... How do we minimize type 1 errors?

  12. Group Assignment-Statistical analysis report(1)

    4. Specifically, the model build steps are: Calculate descriptive statistics for all variables in

  13. Best Statistics Assignment Help Australia: Top Statistics Writers

    Here are Top 4 Online Statistics assignment writing services. ... Below, is the comprehensive analysis of the best statistics assignment

  14. Assignment on Statistical Analysis

    Try it for Free! Sign Up - Try the Citation Generator. 1 - 10 of 563 Go To Page 1 2 3 4 5 6 7 8 9 10.