Scenario Services Components
light
IDataAccess
IDataAccess is used for displaying information and tutorials about how to access data using Python and R.
Python Logo Data access using Python
Query scenario data from the ixmp4 Platform Public App by IIASA using the Python package pyam .
                import pyam
                
                df = pyam.read_iiasa("playground-public", region="World", ...)
              
To avoid large queries, you can also filter by model, scenario or variable.
Learn more about the pyam package on Read the Docs .
For more elaborate queries to the database, you can use the ixmp4 package.
Documentation for the package can be found on here .
                import ixmp4
                
                platform = ixmp4.Platform("playground-public")
                
                # for example, you can get a list of all "runs" (e.g., scenarios or projections)
                platform.runs.tabulate()
              
R Logo Data access using R
There is a tutorial for using the pyam package in combination with the statistics software R . Read more .
  
  <template>

      <i-data-access/>

  </template>