Data Intro for Librarians: Reference

Key Points

Introduction to Library Carpentry
  • Don’t be scared to ask for help

Jargon Busting
  • It helps to share what you know and don’t know about software development and data science jargon

Foundations
  • Data structures should be consistent and predictable

  • Consider using semantic elements or data identifiers to data directories

  • Fit and adapt your data structure to your work

  • Apply naming conventions to directories and file names to identify them, to create associations between data elements, and to assist with the long term readability and comprehension of your data structures

Introduction to Regular Expressions
Regular Expressions basics
  • Match caracters by using characters as a regex

  • {“Add modifiers to change default behavior”=>”case sensitive.”}

  • Operators

Quantifiers in Regular Expressions
  • Use \ to escape a special character

  • Use * to match zero or more characters

  • Use + to match one or more characters

  • Use ? for making an operator optional

  • Use {} to specify how many times something will occur, or a range

Regular expressions exercises
  • Select upper case or lower case; match any character; assert the position at the start and end of line; add a word boundary

Introduction to Data - Multiple Choice Quiz
  • Regular expressions reference guide

Introduction to Data - Multiple Choice Quiz (answers)"
  • Regular expressions answer sheet

Data Intro Cheat Sheet


Regular Expression