Displaying 1 result from an estimated 1 matches for "actual06".
Did you mean:
actual
2007 Oct 17
3
type conversion
...quot;. The
transcript below illustrates the problem.
> Membersind06 <- sqlQuery(channel,"select * from income where rowname like '%Membersind%'")
> names(Membersind06)
[1] "rowname" "item" "budget07" "budget08" "actual06"
> Membersind06$actual06
[1] $149,625.00
Levels: $149,625.00
> typeof(Membersind06$actual06)
[1] "integer"
> Membersind06$actual06/10
[1] NA
Warning message:
/ not meaningful for factors in: Ops.factor(Membersind06$actual06, 10)
Can someone show me how to convert the quanti...