def generateData(pStart, pMultiplier):
    c0 = 0.75
    x = []
    y = []
    while (pStart < 1):
        names = name_generator()
        vs = [Vertex(names.next()) for c in range(52)]
        graph = SmallWorldGraph(vs, 5, pStart)
        x.append(pStart)
        y.append(graph.cluster_coef() / c0)
        pStart *= pMultiplier
    return [x, y]