You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The data we need to filter the WDL collection on is in the for of a list smushed into a pandas column e.g. the value in the part_of column might look like "['afghanistan', 'al-arab (baghdad, iraq) 1917-1920', 'al-iraq (baghdad, iraq) 1920-1922']" and we need to see if any of 'afghanistan', 'al-arab (baghdad, iraq) 1917-1920', or 'al-iraq (baghdad, iraq) 1920-1922' are in the column. The current filter task is looking for a string that looks exactly like the "['afghanistan', 'al-arab (baghdad, iraq) 1917-1920', 'al-iraq (baghdad, iraq) 1920-1922']" e.g. it has all of those values in that order.
The text was updated successfully, but these errors were encountered:
The data we need to filter the WDL collection on is in the for of a list smushed into a pandas column e.g. the value in the
part_of
column might look like"['afghanistan', 'al-arab (baghdad, iraq) 1917-1920', 'al-iraq (baghdad, iraq) 1920-1922']"
and we need to see if any of 'afghanistan', 'al-arab (baghdad, iraq) 1917-1920', or 'al-iraq (baghdad, iraq) 1920-1922' are in the column. The current filter task is looking for a string that looks exactly like the"['afghanistan', 'al-arab (baghdad, iraq) 1917-1920', 'al-iraq (baghdad, iraq) 1920-1922']"
e.g. it has all of those values in that order.The text was updated successfully, but these errors were encountered: