Hi@akhtar,
In R the pie chart is created using the pie() function which takes positive numbers as a vector input. The below script will create and save the pie chart in the current R working directory.
x <- c(21, 62, 10, 53)
labels <- c("London", "New York", "Singapore", "Mumbai")
png(file = "city.png")
pie(x,labels)