Set two digits for correlogram, but some values were rounded up to one
up vote
1
down vote
favorite
I tried to create a correlogram with all values having two decimal places, but some of them still only have one.
I used both codes but didn't help
corrplot(round(corr(M)),2)
corrplot(M,number.digits=2)
r r-corrplot
New contributor
add a comment |
up vote
1
down vote
favorite
I tried to create a correlogram with all values having two decimal places, but some of them still only have one.
I used both codes but didn't help
corrplot(round(corr(M)),2)
corrplot(M,number.digits=2)
r r-corrplot
New contributor
Have you had a look into format functions?
– Oliver
2 days ago
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I tried to create a correlogram with all values having two decimal places, but some of them still only have one.
I used both codes but didn't help
corrplot(round(corr(M)),2)
corrplot(M,number.digits=2)
r r-corrplot
New contributor
I tried to create a correlogram with all values having two decimal places, but some of them still only have one.
I used both codes but didn't help
corrplot(round(corr(M)),2)
corrplot(M,number.digits=2)
r r-corrplot
r r-corrplot
New contributor
New contributor
edited 2 days ago
RLave
2,5281820
2,5281820
New contributor
asked 2 days ago
Sharon
61
61
New contributor
New contributor
Have you had a look into format functions?
– Oliver
2 days ago
add a comment |
Have you had a look into format functions?
– Oliver
2 days ago
Have you had a look into format functions?
– Oliver
2 days ago
Have you had a look into format functions?
– Oliver
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
The first attempt seems ok, despite you are not using the right function, corr seems not exists:
library(corrplot)
M <- mtcars
# one digit
corrplot(round(cor(M),1), method = "number")
M <- mtcars
# two digits
corrplot(round(cor(M),s), method = "number")
Despite it seems you can't go over 3 digits.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
The first attempt seems ok, despite you are not using the right function, corr seems not exists:
library(corrplot)
M <- mtcars
# one digit
corrplot(round(cor(M),1), method = "number")
M <- mtcars
# two digits
corrplot(round(cor(M),s), method = "number")
Despite it seems you can't go over 3 digits.
add a comment |
up vote
0
down vote
The first attempt seems ok, despite you are not using the right function, corr seems not exists:
library(corrplot)
M <- mtcars
# one digit
corrplot(round(cor(M),1), method = "number")
M <- mtcars
# two digits
corrplot(round(cor(M),s), method = "number")
Despite it seems you can't go over 3 digits.
add a comment |
up vote
0
down vote
up vote
0
down vote
The first attempt seems ok, despite you are not using the right function, corr seems not exists:
library(corrplot)
M <- mtcars
# one digit
corrplot(round(cor(M),1), method = "number")
M <- mtcars
# two digits
corrplot(round(cor(M),s), method = "number")
Despite it seems you can't go over 3 digits.
The first attempt seems ok, despite you are not using the right function, corr seems not exists:
library(corrplot)
M <- mtcars
# one digit
corrplot(round(cor(M),1), method = "number")
M <- mtcars
# two digits
corrplot(round(cor(M),s), method = "number")
Despite it seems you can't go over 3 digits.
edited 2 days ago
answered 2 days ago
s_t
2,4282924
2,4282924
add a comment |
add a comment |
Sharon is a new contributor. Be nice, and check out our Code of Conduct.
Sharon is a new contributor. Be nice, and check out our Code of Conduct.
Sharon is a new contributor. Be nice, and check out our Code of Conduct.
Sharon is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53202187%2fset-two-digits-for-correlogram-but-some-values-were-rounded-up-to-one%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Have you had a look into format functions?
– Oliver
2 days ago