Using a Rstudio 3.3.2 laptop:
title: "R Notebook"
output: html_notebook
When trying to display data.frame with the Date column , the data.frame file is displayed on the View tab, but not lower than the fragment itself:
```{r}
df <- data.frame(date=c("31/08/2011", "31/07/2011", "30/06/2011"),values=c(0.8378,0.8457,0.8147))
df
df$dateformatted<-as.Date(strptime(df$date,'%d/%m/%Y'))
df
```
RStudio Diagnostics:
26 Feb 2017 20:42:00 [rsession-x] ERROR r error 7 (Unexpected data type); OCCURRED AT: rstudio::core::Error rstudio::r::json::{anonymous}::jsonValueFromVectorElement(SEXP, int, rstudio::core::json::Value*) /home/ubuntu/rstudio/src/cpp/r/RJson.cpp:149; LOGGED FROM: void rstudio::session::modules::rmarkdown::notebook::enqueueChunkOutput(const string&, const string&, const string&, unsigned int, ChunkOutputType, const rstudio::core::FilePath&, const Value&) /home/ubuntu/rstudio/src/cpp/session/modules/rmarkdown/NotebookOutput.cpp:449
refers to this issue .
Does anyone know what I did wrong? Thank you very much in advance.
source
share