text
stringlengths
39
336
# Depict in a bar chart the Population against Country: <|{data}|chart|type=bar|x=COUNTRY|y=POPULATION|>
# Depict in a bar chart the Population against Country and GDP against Country: <|{data}|chart|type=bar|x=COUNTRY|y[1]=POPULATION|y[2]=GDP|>
# Showcase Population and GDP against Country in a bar chart: <|{data}|chart|type=bar|x=COUNTRY|y[1]=POPULATION|y[2]=GDP|>
# Depict in a bar chart the Population against Country and GDP against Country titled Economic Overview: <|{data}|chart|type=bar|x=COUNTRY|y[1]=POPULATION|y[2]=GDP|title=Economic Overview|>
# Depict in a scatter plot Population against Country: <|{data}|chart|type=scatter|mode=markers|x=COUNTRY|y=POPULATION|>
# Illustrate Population and GDP against Country in a scatter plot: <|{data}|chart|type=scatter|mode=markers|x=COUNTRY|y[1]=POPULATION|y[2]=GDP|>
# Plot GDP in Green points and Population in Yellow points against Country: <|{data}|chart|type=scatter|mode=markers|x=COUNTRY|y[1]=GDP|y[2]=POPULATION|color[1]=Green|color[2]=Yellow|>
# Display a histogram of Population against Country: <|{data}|chart|type=histogram|x=POPULATION|>
# Showcase a horizontal histogram of Population against Country: <|{data}|chart|type=histogram|x=POPULATION|>
# Illustrate the distribution of Population and GDP against Country: <|{data}|chart|type=histogram|x[1]=POPULATION|x[2]=GDP|>
# Illustrate the distribution of Population and GDP against Country titled "Population and GDP Distribution": <|{data}|chart|type=histogram|x[1]=POPULATION|x[2]=GDP|title=Population and GDP Distribution|>
# Present a horizontal distribution of Population and GDP against Country titled "Population and GDP Distribution": <|{data}|chart|type=histogram|y[1]=POPULATION|y[2]=GDP|title=Population and GDP Distribution|>
# Depict a pie chart of Population against Country: <|{data}|chart|type=pie|values=POPULATION|labels=Country|>
# Illustrate a pie chart of Population against Country titled "Population Pie Chart": <|{data}|chart|type=pie|values=POPULATION|labels=Country|title=Population Pie Chart|>
# Depict a pie chart of GDP against Country: <|{data}|chart|type=pie|values=GDP|labels=Country|>