I don't know about group option in ggplot function
I understand first code and graph meaning
But I don't understand second code and graph meaning
1) When second code is useful
2) When second graph is useful
ggplot documentation(https://ggplot2.tidyverse.org/reference/aes_group_order.html) explain group option is that The group aesthetic maps a different line for each subject
★3) How connect line by each subject. I Think each subject is just one point so each subject can't be line
First code and graph
ggplot(ChickWeight, aes(x=Time, y=weight, colour = Diet, group = none)) + geom_line()
Second code and graph
ggplot(ChickWeight, aes(x=Time, y=weight, colour = Diet, group = Chick)) + geom_point()