So was making a scatter plot matrix and noticed that my scatter plots were giving a series of horizontal lines on one side and vertical lines on the other is there a way to make it look like a clump of letters like using the tvalues or something like that? If so how would i accomplish that?
here is my code so far:
CE<-read.csv(“Carbon Emission.csv”)
CE<-filter(CE, complete.cases(CE))
CE1<-select(CE,ce=CarbonEmission,body_type=Body.Type,sex=Sex, diet=Diet,shower= How.Often.Shower,heat_source=Heating.Energy.Source)
plot(CE1)
Here is what it looks like:
scatterplot matrix