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
r
add a comment |
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
r
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 fromtemp
that is bigger thantemp
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 ofrequiredperson
and how many rows are intemp
. 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
add a comment |
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
r
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
r
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 fromtemp
that is bigger thantemp
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 ofrequiredperson
and how many rows are intemp
. 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
add a comment |
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 fromtemp
that is bigger thantemp
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 ofrequiredperson
and how many rows are intemp
. 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
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
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%2f53201650%2ferror-in-temprequiredperson-subscript-out-of-bounds%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
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 thantemp
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 ofrequiredperson
and how many rows are intemp
. 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