Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 1.88 KB

File metadata and controls

41 lines (30 loc) · 1.88 KB

Bookmarks

Note to self

Bedre med små prototyper enn uferdige store prosjekt.

Thesis

  • Include image from TA powerpoint on training model datapoipeline

/model

  • [] Define sudocode for agent interactons
  • Make a mini version similar to a vcv rack wire connection.
    • build on it
      • implement click to add module
      • implement doubble click module to define i/o
      • [ ]

Data pipeline

  • Make working baseline datafetcher for the websites listed below:

fetching data into file form single line command python3:

import wbdata, sqlite3, pandas as pd; from datetime import datetime; wbdata.get_series("NY.GDP.PCAP.CD", country="all", date=(datetime(2010,1,1), datetime(2020,1,1)), freq='Y').reset_index().dropna().to_sql("gdp_per_capita", sqlite3.connect("gdp_per_capita.db"), if_exists="replace", index=False)