screenshot of my csv file How would I organize the data from https://users.stat.ufl.edu/~winner/data/sexlierel.dat to make an accurate analysis? I am having trouble plotting the different types of data with the way it is given to me.
description: https://users.stat.ufl.edu/~winner/data/sexlierel.txt
```{r}
data_set <- read.csv("project_data.csv", header = TRUE)
names(data_set)
summary(data_set)
summary(data_set$Gender)
data=data.frame("Gender","Count")
```
I am trying to find the relationship with a scatterplot between the number of people in each category (count). I feel like this is difficult to do with the way the data is given. Is there a way I should rearrange my csv file?
```{r}
scatter=ggplot(data=data, aes("Gender", "Count")) + geom_point()
```
I don't think that data is a "true" CSV file. There are no commas or other delimiters.
you may need to look at read.tsv which is tab separated data?