How to obtain Printed Output in R?
I have a function called filter_output
in R
which, when evaluated, gives the following output:
Smoothed values of states and standard errors at time n = 392:
Estimate Std. Error
Kappa 0.000000003006008509 0.000001266168236651
Phi -0.000000005332550866 0.000001592969577779
custom1 0.007754099549102765 0.001189674872696318
custom2 0.000000000029421272 0.000614394025071959
The problem however is that there's no way for me to store these values in a separate matrix - for example, I can't use filter_output$...
or filter_output[1]
etc. to obtain the estimates or standard error since they don't appear to be a part of any call of the function (it's not in a list either).
I've tried using the function capture.output
in order to obtain these individual values but this function appears to extract them as strings, which seems to be computationally inefficient since I have to split up the string and then convert it to a numeric value. Is there a quick and efficient way for me to store values when they're outputted?
r
add a comment |
I have a function called filter_output
in R
which, when evaluated, gives the following output:
Smoothed values of states and standard errors at time n = 392:
Estimate Std. Error
Kappa 0.000000003006008509 0.000001266168236651
Phi -0.000000005332550866 0.000001592969577779
custom1 0.007754099549102765 0.001189674872696318
custom2 0.000000000029421272 0.000614394025071959
The problem however is that there's no way for me to store these values in a separate matrix - for example, I can't use filter_output$...
or filter_output[1]
etc. to obtain the estimates or standard error since they don't appear to be a part of any call of the function (it's not in a list either).
I've tried using the function capture.output
in order to obtain these individual values but this function appears to extract them as strings, which seems to be computationally inefficient since I have to split up the string and then convert it to a numeric value. Is there a quick and efficient way for me to store values when they're outputted?
r
add a comment |
I have a function called filter_output
in R
which, when evaluated, gives the following output:
Smoothed values of states and standard errors at time n = 392:
Estimate Std. Error
Kappa 0.000000003006008509 0.000001266168236651
Phi -0.000000005332550866 0.000001592969577779
custom1 0.007754099549102765 0.001189674872696318
custom2 0.000000000029421272 0.000614394025071959
The problem however is that there's no way for me to store these values in a separate matrix - for example, I can't use filter_output$...
or filter_output[1]
etc. to obtain the estimates or standard error since they don't appear to be a part of any call of the function (it's not in a list either).
I've tried using the function capture.output
in order to obtain these individual values but this function appears to extract them as strings, which seems to be computationally inefficient since I have to split up the string and then convert it to a numeric value. Is there a quick and efficient way for me to store values when they're outputted?
r
I have a function called filter_output
in R
which, when evaluated, gives the following output:
Smoothed values of states and standard errors at time n = 392:
Estimate Std. Error
Kappa 0.000000003006008509 0.000001266168236651
Phi -0.000000005332550866 0.000001592969577779
custom1 0.007754099549102765 0.001189674872696318
custom2 0.000000000029421272 0.000614394025071959
The problem however is that there's no way for me to store these values in a separate matrix - for example, I can't use filter_output$...
or filter_output[1]
etc. to obtain the estimates or standard error since they don't appear to be a part of any call of the function (it's not in a list either).
I've tried using the function capture.output
in order to obtain these individual values but this function appears to extract them as strings, which seems to be computationally inefficient since I have to split up the string and then convert it to a numeric value. Is there a quick and efficient way for me to store values when they're outputted?
r
r
asked Jan 2 at 5:05
ThePlowKingThePlowKing
109112
109112
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Just type the name of the opbject you have saved it as
filter_output1 <- filter_output %>% select(Estimate, Std. Error)
#print
filter_output1
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54001456%2fhow-to-obtain-printed-output-in-r%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Just type the name of the opbject you have saved it as
filter_output1 <- filter_output %>% select(Estimate, Std. Error)
#print
filter_output1
add a comment |
Just type the name of the opbject you have saved it as
filter_output1 <- filter_output %>% select(Estimate, Std. Error)
#print
filter_output1
add a comment |
Just type the name of the opbject you have saved it as
filter_output1 <- filter_output %>% select(Estimate, Std. Error)
#print
filter_output1
Just type the name of the opbject you have saved it as
filter_output1 <- filter_output %>% select(Estimate, Std. Error)
#print
filter_output1
edited Jan 2 at 5:49
RAB
1,412418
1,412418
answered Jan 2 at 5:17


Farah NazifaFarah Nazifa
587512
587512
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54001456%2fhow-to-obtain-printed-output-in-r%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown