Make a flowchart

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

Make a flowchart

Post by answerhappygod »

Make a flowchart
Make A Flowchart 1
Make A Flowchart 1 (28.49 KiB) Viewed 29 times
data = read.csv(file.choose(), header = TRUE) # Scatterplot attach(data) summary(data) plot(x, y) boxplot(x, y) Im.out=Im(y-x) detach(data) # Pearson correlation # Pearson correlation raw data attach(data) cor.test(x,y) detach(data) # Pearson correlation manually excluding High Leverage Point data_cleaned <- subset(data_correlation, y < value of y) attach(data_cleaned) plot(x, y) cor.test(x,y) detach(data_cleaned) # Classical robust correlations # Spearman correlation attach(data) cor.test(x,y, method="spearman") detach(data) # Kendall's tau attach(data) cor.test(x,y, method="kendall") detach(data) # Modern robust correlations library(WRS2) # Percentage bend correlation attach(data) pbcor(x,y) detach(data) # Winsorized correlation attach(data)

wincor(x,y) detach(data) # Robust methods without High Leverage Point attach(data_cleaned) cor.test(x,y) cor.test(x,y, method="spearman") cor.test(x,y, method="kendall") pbcor(x,y) wincor(x,y) detach(data_cleaned)
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply