twitter_fund_of_the_year_analyze

command module
v0.0.0-...-12fac50 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 2, 2023 License: MIT Imports: 10 Imported by: 0

README

twitter_fund_of_the_year_analyze

execute

go run main.go

SQLite

sqlite3 foy2023.db

csv mode

.headers on
.mode csv
.once './ranking.csv'

count by ticker

select
    count(tweets.ticker) c,
    tickers.name
from
    tweets
    inner join tickers
        on tweets.ticker=tickers.ticker
group by
    tweets.ticker
order by
    c desc;

File ranking.csv will be saved.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL