Extract a capture group
Extract the domain from each owner's email address into a new "email_domain" column. Use `.str.extract(pattern, group)` with the pattern `@(.+)` and group `1`.
Extract the domain from each owner's email address into a new "email_domain" column. Use `.str.extract(pattern, group)` with the pattern `@(.+)` and group `1`.