Created
September 11, 2017 12:10
-
-
Save timcdlucas/19d9bc6c7963357076ee05dbae77bcce to your computer and use it in GitHub Desktop.
Replacement operators for zoon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run a workflow, specifying one module of each type. | |
work1 <- workflow(occurrence = UKAnophelesPlumbeus, | |
covariate = UKAir, | |
process = OneHundredBackground, | |
model = LogisticRegression, | |
output = PrintMap) | |
# Current form | |
work1 <- ChangeWorkflow(work1, model = RandomForest) | |
# Replacement form | |
model(work1) <- RandomForest | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment