You haven't added anything to the plot. If you want to create, say, a histogram you would need ggplot(data = name of the data, aes(x = column)) + geom_histogram().
If you want a line plot you would need: ggplot(data = name of the data, aes(x = column, y = column)) + geom_line()