What is your favorite thing you learned yesterday about spreadsheets or OpenRefine?
Carpentries Brown Bag - Querying data from database API services with Python Requests: https://github.com/amdevine/cbb-python-requests
What is your favorite thing you learned yesterday about spreadsheets or OpenRefine?
Carpentries Brown Bag - Querying data from database API services with Python Requests: https://github.com/amdevine/cbb-python-requests
These notes are adapted from the official Carpentries documentation for Data Analysis and Visualization in Python for Ecologists: Before we start. They have been reordered, and some material has been expanded on, and there are some Smithsonian-specific details incorporated. The original lessons are licensed under CC-BY 4.0 2018–2020 by The Carpentries. These adapted notes are available for use under the same license.
Official lesson link: https://datacarpentry.org/python-ecology-lesson/
Jupyter documentation: https://datacarpentry.org/python-ecology-lesson/jupyter_notebooks/
| library(tidyverse) | |
| #### Changing the values in a character/numeric vector #### | |
| # Create sample data frame | |
| df <- data.frame( | |
| col1 = c("A", "A", "A", "A", "B", "B", "B", "B"), | |
| col2 = c("C", "C", "D", "D", "C", "C", "D", "D"), | |
| col3 = c("E", "F", "E", "F", "E", "F", "E", "F"), | |
| stringsAsFactors = FALSE |
| license: apache-2.0 |
Text was taken from Stackoverflow, user emk. https://stackoverflow.com/a/72156
First, clone a remote Git repository and cd into it:
$ git clone git://example.com/myproject
$ cd myproject
Next, look at the local branches in your repository: