Displaying 3 results from an estimated 3 matches for "mydates1".
Did you mean:
mydates
2006 Mar 21
1
rownames, colnames, and date and time
...t;2001-1-24","2005-12-25"))
rownames(mydf)<-mydates
names(mydf)<-mydates
rownames(mymat)<-mydates
colnames(mymat)<-mydates
print(deparse(mydates))
print(deparse(rownames(mydf)))
print(deparse(names(mydf)))
print(deparse(rownames(mymat)))
print(deparse(colnames(mymat)))
mydates1<-as.POSIXlt(mydates)
# the following lines will not work and
# produce errors
rownames(mydf)<-mydates1
names(mydf)<-mydates1
rownames(mymat)<-mydates1
colnames(mymat)<-mydates1
--
Erich Neuwirth
Institute for Scientific Computing and
Didactic Center for Computer Science
Universi...
2006 Mar 21
1
rownames, colnames, and date and time
...t;2001-1-24","2005-12-25"))
rownames(mydf)<-mydates
names(mydf)<-mydates
rownames(mymat)<-mydates
colnames(mymat)<-mydates
print(deparse(mydates))
print(deparse(rownames(mydf)))
print(deparse(names(mydf)))
print(deparse(rownames(mymat)))
print(deparse(colnames(mymat)))
mydates1<-as.POSIXlt(mydates)
# the following lines will not work and
# produce errors
rownames(mydf)<-mydates1
names(mydf)<-mydates1
rownames(mymat)<-mydates1
colnames(mymat)<-mydates1
--
Erich Neuwirth
Institute for Scientific Computing and
Didactic Center for Computer Science
Universi...
2006 Jul 03
1
rownames, colnames, and date and time
...rownames(mydf)<-mydates
>names(mydf)<-mydates
>rownames(mymat)<-mydates
>colnames(mymat)<-mydates
>
>print(deparse(mydates))
>print(deparse(rownames(mydf)))
>print(deparse(names(mydf)))
>print(deparse(rownames(mymat)))
>print(deparse(colnames(mymat)))
>
>mydates1<-as.POSIXlt(mydates)
>
># the following lines will not work and
># produce errors
>
>rownames(mydf)<-mydates1
>names(mydf)<-mydates1
>rownames(mymat)<-mydates1
>colnames(mymat)<-mydates1
>
>
>--
>Erich Neuwirth
>Institute for Scientific Computin...