Hi im new to R Studio and i try to make Rmarkdown file i run it and it work correctly but when i want to knit or word or pfd i got this message:
ERROR in eval (expr,envir,enclos): object'all_trips_v2' not found
calls : < Anonymous>...withvisible -> eval_with_user_handlers -> eval -> eval
Execution halted
---
title: "TripTrainnig"
author: "Hafed"
date: "2023-06-15"
output: word_document
---
## my fisrt mrkdown report
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## importing library
```{r library }
library(tidyverse)
library(lubridate)
library(ggplot2)
```
### Data Exploration
#### Data Frame
```{r Data Frame}
df <- all_trips_v2
```
#### summry Data Frame
```{r summary}
summary(df)
```