Please enable JavaScript.
Coggle requires JavaScript to display documents.
Google Analytics - Coggle Diagram
Google Analytics
-
-
:seven: R Programming
-
Functions
-
data("ToothGrowth")
View(ToothGrowth)
filter(ToothGrowth,dose==0.5)
-
-
Objects :gift:
-
-
-
-
Dataframes
data.frame(x=c(x,y,...),y=c(...),z=c(...)...)
-
-
-
Visualize
-
-
ggplot(data=penguins)+geom_point(mapping=aes(x=flipper_length_mm,y=body_mass_g),color="purple")
geom
-
_bar(...x...,color/size/alpha/fill)
-
_smooth(...x,y...,line_type)
-
Annotations
+labs(title="YYY",subtitle="ZZZ",caption="AAA",)
+annotate("text",x=x_value,y=y_value,label="XXX")
-
-
:four: Process
-
-
SQL
-
INSERT INTO tablename
(value1,value2,...)
VALUES
(newvalue1,newvalue2,...)
-
-
-
-
-
-
-
-