Max Kanter
Max Kanter
It can be useful to be able to infer relationships between two tables. Especially as we build higher level applications on top of featuretools. This functionality could be implemented based...
If I have a single entity, it'd be great if I could just initialize an `Entity` and then pass the entity to DFS. We have a lot of users who...
In situations where we want to run Deep Feature Synthesis for a dataset that has a many-to-many relationship we need to create an extra association entity to handle the mapping....
Historical RTM Settlement Point Prices (SPPs) for each of the Hubs and Load Zones. ``` >>> import isodata >>> iso = isodata.Ercot() >>> iso.get_historical_rtm_spp(year=2020) ``` ``` Delivery Date Delivery Hour...
Here are the fuels used by each of the 7 isos ``` New York ISO: ['Dual Fuel', 'Natural Gas', 'Hydro', 'Nuclear', 'Wind', 'Other Renewables', 'Other Fossil Fuels'] California ISO: ['Natural...
Currently, the historical API only supports querying by one day at a time. ### Current API: ```python caiso.get_historical_demand("Jan 1, 2020") ``` ### Proposed API: ```python caiso.get_historical_demand(start="Jan 1, 2020", end="Jan 30,...
Data sources found so far: * CAISO installed renewables - http://www.caiso.com/Style%20Library/caiso/csv/installedRenewables.csv * Ercot - https://www.ercot.com/files/docs/2022/02/08/ERCOT_Fact_Sheet.pdf
Some potential sources: https://www.ercot.com/mktinfo https://www.ercot.com/api/1/services/read/dashboards/systemWidePrices.json https://www.ercot.com/mp/data-products/markets/real-time-market?id=NP6-788-CD
Some ISOs call it demand, some call it load. In general, seems like load is more descriptive phrasing. Should we change the method names to use load instead? `get_latest_demand` -->...
Currently, just documenting this in the readme. Now that the library is getting more fleshed out it probably makes sense to add a documentation website. Thinking about using sphinx and...