How to Display Chinese Characters in ggplot2
Introduction In this post, I am going to demonstrate how to display Chinese characters in ggplot2
#loading necessary packages library(rvest) library(xml2) library(tidyverse) library(tidytext) library(knitr) Let’s get our text data by scraping Chien-Ming Wang’s page on Wikipedia. I will not explain the process of web scraping in this post (but will do this in another post). The focus is on displaying Chinese character in ggplot2.
Sep 10, 2021