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
String values are sometimes subject to constraints that aren't appropriate to the other kinds of data types
Forbidden characters: characters like '<', '$', '%' may be forbidden in fields like name, title
Instead of a forbidden list, the datatype might only have allowed characters e.g. (a-zA-Z) or a class of allowed characters and others are forbidden. (what does pandas do here if anything?
Strings may have minimum character length or maximum
Although a plain Column is fine for strings without these constraints, should we make a ConstrainedString or RestrictedString column type that has these constraints builtin?
The text was updated successfully, but these errors were encountered:
String values are sometimes subject to constraints that aren't appropriate to the other kinds of data types
Although a plain Column is fine for strings without these constraints, should we make a ConstrainedString or RestrictedString column type that has these constraints builtin?
The text was updated successfully, but these errors were encountered: