Displaying 2 results from an estimated 2 matches for "idcasenumb".
Did you mean:
idcasenumber
2007 Aug 10
0
Row name of empty string issue
...should let you index it with the name "".
Anyway, as further proof of the setup:
> rownames(CurrentRecordBlankFieldsCountSums)[1]
[1] ""
# So the first rowname of CurrentRecordBlankFieldsCountSums is an empty
string ""
> CurrentRecordBlankFieldsCountSums[1 ,]
IDCaseNumber Category SSN LastName FirstName
0 0 1 0 0
# So, the first row has some data (not just NAs as would be returned if that
row didn't exist)
But ff I index that same row using the rowname it doesn't find the row:
> CurrentRecordBlankFieldsCountSums[rown...
2007 Aug 11
0
DOE and interaction plot general question
...ot;".
>
> Anyway, as further proof of the setup:
> > rownames(CurrentRecordBlankFieldsCountSums)[1]
> [1] ""
> # So the first rowname of CurrentRecordBlankFieldsCountSums is an empty
> string ""
>
> > CurrentRecordBlankFieldsCountSums[1 ,]
> IDCaseNumber Category SSN LastName FirstName
> 0 0 1 0 0
> # So, the first row has some data (not just NAs as would be returned if
> that
> row didn't exist)
>
> But ff I index that same row using the rowname it doesn't find the row:
> > Curr...