HI All
I like to use quarto as it is easier to write documentation.
However i have a problem
i created a tibble from an xlsx file
Load Libraries
{r}
library("tidyverse")
library("lubridate")
library("tsibble")
library("tsibbledata")
library("feasts")
library("fable")
library("readxl")
Create tibble from an excel file:
{r}
tibble_example <- read_xlsx("data/Book1.xlsx")
{r}
tibble_example %>% print()
excuting code in quarto
excuting code in console
im getting a bit confused between the differnt class types
question 1
is there a way to print in quarto getting the same class types that i got in the console? i understand better dttm, but don´t understand <S3: POSIXct>
question 2
is it possible to run the code in quarto window but print only in the console? (so i can get dttm)
is it possible to run the code in quarto window but print both in quarto and the console?
My target is to create tsibbles from tibbles but I´m getting confused with the class types printed in quarto
thanks in advance
Tony