Error in temp[requiredperson, ] : subscript out of bounds











up vote
0
down vote

favorite












doubt image



for(i in 1:rowcount){    
t = sum(temp[i,])
if(t>0){
rowmean = mean(temp[i,])
rowsd = sd(temp[i,])*sqrt(colcount-1)
temp[i,] = (temp[i,]-rowmean)/rowsd
}
}
requiredperson =4661 #Obama
dotproducts = numeric(rowcount)
for( i in 1:rowcount){
dotproducts[i] = sum(temp[requiredperson,]*temp[i,])
}



Error in temp[requiredperson, ] : subscript out of bounds











share|improve this question




















  • 1




    Please explain in few lines with example, what you are trying to achieve here, It would be helpful to others, and you will get the desired help.
    – PKumar
    Nov 8 at 4:49












  • I have attached image file. So it would be helpful. I am practicing Text Analytics in R. Working around with DocumentTermMatrix in R.
    – SUDHEER KUMAR
    Nov 8 at 5:11






  • 2




    You are selecting a row from temp that is bigger than temp I think. E.g. - selecting row 4 from a 3 row matrix - matrix(1:3)[4,] . That will give you the same error. Check the value of requiredperson and how many rows are in temp. This is all guessing though given the limited information available.
    – thelatemail
    Nov 8 at 5:50








  • 1




    Yes, I found my error. Thanks thelatemail for finding out my error. Thank you very much.
    – SUDHEER KUMAR
    Nov 8 at 6:09















up vote
0
down vote

favorite












doubt image



for(i in 1:rowcount){    
t = sum(temp[i,])
if(t>0){
rowmean = mean(temp[i,])
rowsd = sd(temp[i,])*sqrt(colcount-1)
temp[i,] = (temp[i,]-rowmean)/rowsd
}
}
requiredperson =4661 #Obama
dotproducts = numeric(rowcount)
for( i in 1:rowcount){
dotproducts[i] = sum(temp[requiredperson,]*temp[i,])
}



Error in temp[requiredperson, ] : subscript out of bounds











share|improve this question




















  • 1




    Please explain in few lines with example, what you are trying to achieve here, It would be helpful to others, and you will get the desired help.
    – PKumar
    Nov 8 at 4:49












  • I have attached image file. So it would be helpful. I am practicing Text Analytics in R. Working around with DocumentTermMatrix in R.
    – SUDHEER KUMAR
    Nov 8 at 5:11






  • 2




    You are selecting a row from temp that is bigger than temp I think. E.g. - selecting row 4 from a 3 row matrix - matrix(1:3)[4,] . That will give you the same error. Check the value of requiredperson and how many rows are in temp. This is all guessing though given the limited information available.
    – thelatemail
    Nov 8 at 5:50








  • 1




    Yes, I found my error. Thanks thelatemail for finding out my error. Thank you very much.
    – SUDHEER KUMAR
    Nov 8 at 6:09













up vote
0
down vote

favorite









up vote
0
down vote

favorite











doubt image



for(i in 1:rowcount){    
t = sum(temp[i,])
if(t>0){
rowmean = mean(temp[i,])
rowsd = sd(temp[i,])*sqrt(colcount-1)
temp[i,] = (temp[i,]-rowmean)/rowsd
}
}
requiredperson =4661 #Obama
dotproducts = numeric(rowcount)
for( i in 1:rowcount){
dotproducts[i] = sum(temp[requiredperson,]*temp[i,])
}



Error in temp[requiredperson, ] : subscript out of bounds











share|improve this question















doubt image



for(i in 1:rowcount){    
t = sum(temp[i,])
if(t>0){
rowmean = mean(temp[i,])
rowsd = sd(temp[i,])*sqrt(colcount-1)
temp[i,] = (temp[i,]-rowmean)/rowsd
}
}
requiredperson =4661 #Obama
dotproducts = numeric(rowcount)
for( i in 1:rowcount){
dotproducts[i] = sum(temp[requiredperson,]*temp[i,])
}



Error in temp[requiredperson, ] : subscript out of bounds








r






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 8 at 5:09

























asked Nov 8 at 4:41









SUDHEER KUMAR

123




123








  • 1




    Please explain in few lines with example, what you are trying to achieve here, It would be helpful to others, and you will get the desired help.
    – PKumar
    Nov 8 at 4:49












  • I have attached image file. So it would be helpful. I am practicing Text Analytics in R. Working around with DocumentTermMatrix in R.
    – SUDHEER KUMAR
    Nov 8 at 5:11






  • 2




    You are selecting a row from temp that is bigger than temp I think. E.g. - selecting row 4 from a 3 row matrix - matrix(1:3)[4,] . That will give you the same error. Check the value of requiredperson and how many rows are in temp. This is all guessing though given the limited information available.
    – thelatemail
    Nov 8 at 5:50








  • 1




    Yes, I found my error. Thanks thelatemail for finding out my error. Thank you very much.
    – SUDHEER KUMAR
    Nov 8 at 6:09














  • 1




    Please explain in few lines with example, what you are trying to achieve here, It would be helpful to others, and you will get the desired help.
    – PKumar
    Nov 8 at 4:49












  • I have attached image file. So it would be helpful. I am practicing Text Analytics in R. Working around with DocumentTermMatrix in R.
    – SUDHEER KUMAR
    Nov 8 at 5:11






  • 2




    You are selecting a row from temp that is bigger than temp I think. E.g. - selecting row 4 from a 3 row matrix - matrix(1:3)[4,] . That will give you the same error. Check the value of requiredperson and how many rows are in temp. This is all guessing though given the limited information available.
    – thelatemail
    Nov 8 at 5:50








  • 1




    Yes, I found my error. Thanks thelatemail for finding out my error. Thank you very much.
    – SUDHEER KUMAR
    Nov 8 at 6:09








1




1




Please explain in few lines with example, what you are trying to achieve here, It would be helpful to others, and you will get the desired help.
– PKumar
Nov 8 at 4:49






Please explain in few lines with example, what you are trying to achieve here, It would be helpful to others, and you will get the desired help.
– PKumar
Nov 8 at 4:49














I have attached image file. So it would be helpful. I am practicing Text Analytics in R. Working around with DocumentTermMatrix in R.
– SUDHEER KUMAR
Nov 8 at 5:11




I have attached image file. So it would be helpful. I am practicing Text Analytics in R. Working around with DocumentTermMatrix in R.
– SUDHEER KUMAR
Nov 8 at 5:11




2




2




You are selecting a row from temp that is bigger than temp I think. E.g. - selecting row 4 from a 3 row matrix - matrix(1:3)[4,] . That will give you the same error. Check the value of requiredperson and how many rows are in temp. This is all guessing though given the limited information available.
– thelatemail
Nov 8 at 5:50






You are selecting a row from temp that is bigger than temp I think. E.g. - selecting row 4 from a 3 row matrix - matrix(1:3)[4,] . That will give you the same error. Check the value of requiredperson and how many rows are in temp. This is all guessing though given the limited information available.
– thelatemail
Nov 8 at 5:50






1




1




Yes, I found my error. Thanks thelatemail for finding out my error. Thank you very much.
– SUDHEER KUMAR
Nov 8 at 6:09




Yes, I found my error. Thanks thelatemail for finding out my error. Thank you very much.
– SUDHEER KUMAR
Nov 8 at 6:09

















active

oldest

votes











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',
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53201650%2ferror-in-temprequiredperson-subscript-out-of-bounds%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53201650%2ferror-in-temprequiredperson-subscript-out-of-bounds%23new-answer', 'question_page');
}
);

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







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini