We construct economic indicators for Switzerland, based on Google Trends data.
The data is displayed and described at: https://www.trendecon.org
The data is stored as CSV in the
data folder:
| Description | Switzerland | Germany | Austria |
|---|---|---|---|
| clothing | clothing_sa.csv | — | — |
| food delivery | fooddelivery_sa.csv | — | — |
| garden | garden_sa.csv | — | — |
| home office equipment | homeoffice_sa.csv | — | — |
| luxury | luxury_sa.csv | — | — |
| mobility | mobility_sa.csv | — | — |
| social | social_sa.csv | — | — |
| travel | travel_sa.csv | — | — |
| trendecon main indicator | trendecon_sa.csv | trendecon_sa.csv | trendecon_sa.csv |
The following R code download and displays the main indicator for CH, DE, ant AT:
data <- read.csv("https://raw.githubusercontent.com/trendecon/data/master/data/ch/trendecon_sa.csv")
tsbox::ts_plot(data, title = "Switzerland")data <- read.csv("https://raw.githubusercontent.com/trendecon/data/master/data/de/trendecon_sa.csv")
tsbox::ts_plot(data, title = "Germany")data <- read.csv("https://raw.githubusercontent.com/trendecon/data/master/data/at/trendecon_sa.csv")
tsbox::ts_plot(data, title = "Austria")The data in this repository is licensed under a Creative Commons
Attribution 4.0 International License (CC BY
4.0), see
LICENSE. You are free to share and adapt it, including for
commercial use, as long as you give appropriate credit to trendEcon.


