This is the first time I try to create something on a Kaggle Kernel. I know Rmd files are special as they have regular text and code on them. I read that I can't use the usual blue arrow to run the code on the Kernel because it will also try to run the regular text, on my case, generating this error:
Error in parse(text = x, srcfile = src): attempt to use zero-length variable name
How am I supposed to run Rmd files within Kaggle to view the report it generates?
I tried to reload the kernel and search for a special button to run the entire Rmd file but no luck whatsoever.
---
title: "Credit Card Fraud Detection"
author: "Fernando José Velasco Borea"
date: "May 12th 2019"
output:
pdf_document:
toc: true
number_sections: true
---
x <- 1
print(x)
I'm expecting a behavior like the one I get on RStudio, like being able to run the code chunks and if I want, run everything to generate the report.