I try to calculate intraclass correlation coefficient (ICC) between two variables in the dataset "DATASETNAME":
icc(DATASETNAME, model = "twoway", type = "agreement", unit = "single")
I get ICC and 95% confidence interval (with real numbers), however the p-value is calculated to be 0.
Is there any way to get the exact p-value with its decimals or (number)e-(number)? Does "p=0" mean something in R (like for example when p<0.001, then R will display p=0)?
I already tried this but still got p=0:
icc(DATASETNAME, model = "twoway", type = "agreement", unit = "single")$p.value
I tested this function on highly similar ratings columns, and got very low p value but not exactly zero. Its not obvious to me how to abuse my data to get a p=0 to come out. Can you provide example data to demonstrate that ?
Short Version
You can share your data in a forum friendly way by passing the data to share to the dput() function.
If your data is too large you can use standard methods to reduce it before sending to dput().
When you come to share the dput() text that represents your data, please be sure to format your post with triple backticks on the line before your code begins to format it appropriately.