0.7.1 (October 12, 2022)#

Added#

Changed#

  • Support more DataType in ColumnCondition when used in where().

User interface#

  • Upgraded Atoti UI to 5.0.17.

Deprecated#

  • Comparing a Column, Level, or Measure against None. Use the corresponding isnull() method instead.

    - m["Example"] == None
    + m["Example"].isnull()
    - m["Example"] != None
    + ~m["Example"].isnull()
    
  • Passing a Mapping to at()’s coordinates parameter. Pass a Condition instead.

      at(
        m["Price"],
    -   {l["Company"]: l["Competitor"]},
    +   l["Company"] == l["Competitor"],
      )
    
  • Passing a Mapping to drop()’s coordinates parameter. Pass a Condition instead:

      table.drop(
    -   {"id": 1, "city": "London"}, {"city": "Paris"}
    +   ((table["id"] == 1) & (table["city"] == "London")) | (table["city"] == "Paris")
      )
    

Fixed#