How can I understand this result with "chart.Correlation"

I have used R codes below to get the result of correlation.

install.packages("PerformanceAnalytics")
library(PerformanceAnalytics)

original_data <- read.csv("에솔_correlation_analysis.csv", header = TRUE, sep = ",", na.strings = "NA")
str(original_data)
library(dplyr)
original_data <- tbl_df(original_data)

Seg03 <- filter(data_analysis, 가구seg=="type03")
Seg03_airconditioner <- data.frame(Seg03$에어컨_대수,Seg03$주중_수면,Seg03$주중_활동,Seg03$주말_수면,Seg03$주말_활동)
chart.Correlation(Seg03_airconditioner, histogram = TRUE, method = "pearson")

I got the chart like the attached image and I wonder how can I read the result of red dots which are in the cell (1,3) and (2,3). Few other cells show me how significant that coefficient value is with red star(s) but those two cells mentioned earlier, they show me only a red dot in each cells.

For p values a common convention for statistical significance is:

***: 0 - 0.001
**: 0.001 - 0.01
*: 0.01 - 0.05
•: 0.05 - 0.10 (option + 8 is a dot on a Mac)

This helps me a lot! Thank you so much :smiley:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.