Error: object 'TradeData' not found
With these entries
{r "Analysis of Vanuatu's exports", echo=FALSE}
unique(TradeData$Principle_Exports)
TradeData <- read.csv("https://www.unsiap.or.jp/on_line/2024/RAP/Data/TradeData.csv")
ExportsByType <- TradeData %>%
group_by(Principle_Exports) %>%
summarize(total = sum(Stat_Value)) %>%
arrange(desc(total))
It looks like you used unique()
before you loaded the data.
2 Likes
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.