In case anyone's interested in the depressing science of Mass Shootings in the United States, here's some code which grabs a dataset compiled here. Use it, if you'd wish.
NOTE: The gsheet program belongs to JanDitzen who wrote this first
Code:
cap program drop gsheet
program define gsheet
syntax anything , key(string) id(string)
local url "https://docs.google.com/spreadsheets/d/`key'/export?gid=`id'&format=csv"
copy "`url'" `anything', replace
noi disp `"saved in `anything'"'
import delim using `anything', clear bindquote(strict)
end
cls
gsheet "`c(pwd)'\\test.csv" , key("1b9o6uDO18sLxBqPwl_Gh9bnhW-ev_dABH83M5Vb5L8o") id("0")
erase test.csv
br
NOTE: The gsheet program belongs to JanDitzen who wrote this first

Comment