File organization and naming
are powerful weapons against chaos.
– Jenny Bryan
File organization and naming
are powerful weapons against chaos.
– Jenny Bryan
2016-08-24 RawData/
InProcessData/
CleanData/
Code/
Reports/
Your closest collaborator is you six months ago,
but you don't reply to email.
– (paraphrasing) Mark Holder
Have sympathy for your future self.
SELECT * FROM species
SELECT weight/1000.0 FROM species
WHERE species_id = 'DM' AND weight > 78
(OR IN)
ORDER BY
(ASC DESC)
GROUP BY
COUNT(*), SUM(weight)
JOIN ON
select SELECT *
filter WHERE
mutate weight/1000.0
group_by GROUP BY
summarize COUNT(*), AVG(weight)
arrange ORDER BY