zoonproject / zoon

The zoon R package
Other
61 stars 13 forks source link

list and Chain documentation #410

Open timcdlucas opened 6 years ago

timcdlucas commented 6 years ago

Hi all,

A few issues I've found with the documentation.

Firstly, as far as I can see there's no easy way to get documentation for list. ?list would be very useful.

Secondly, ?Chain says "Model and output modules may not be chained." But output modules can be chained and is in fact the only way to do something like


work2 <- workflow(UKAnophelesPlumbeus,
                 UKAir,
                 OneHundredBackground,   
                 list(RandomForest, LogisticRegression),
                 Chain(PrintOccurrenceMap, PrintMap))

I will try to get round to fixing this later point myself. Not exactly sure the best approach for the previous former point.

timcdlucas commented 6 years ago

This is partially the same issue as #32.