Example #1
0
def plot_data_set(dataset_name):
    data_set = pickle.load(open('utils/data_sets.pickle', 'rb'), encoding='latin1')[dataset_name]
    fig = plt.figure()
    ax = fig.add_subplot(111)
    ac.hide_top_and_right_axis(ax)
    # plt.axis('off')
    ac.plot_data(data_set, ax)
    ac.save_plot(fig)
Example #2
0
def create_iris_figure():
    from sklearn import datasets
    iris = datasets.load_iris()
    data = np.append(iris.data.T[0:2], np.array([iris.target]), axis=0)
    fig = plt.figure()
    ax = fig.add_subplot(111)
    plt.axis('off')
    ac.plot_data(data, ax)
    ac.save_plot(fig)
Example #3
0
def plot_data_set(dataset_name):
    data_set = pickle.load(open('utils/data_sets.pickle', 'rb'),
                           encoding='latin1')[dataset_name]
    fig = plt.figure()
    ax = fig.add_subplot(111)
    ac.hide_top_and_right_axis(ax)
    # plt.axis('off')
    ac.plot_data(data_set, ax)
    ac.save_plot(fig)
Example #4
0
def create_iris_figure():
    from sklearn import datasets
    iris = datasets.load_iris()
    data = np.append(iris.data.T[0:2], np.array([iris.target]), axis=0)
    fig = plt.figure()
    ax = fig.add_subplot(111)
    plt.axis('off')
    ac.plot_data(data, ax)
    ac.save_plot(fig)
Example #5
0
def plot_all_data_sets():
    data_sets = pickle.load(open('../data_sets.pickle', 'rb'), encoding='latin1')
    for key in data_sets:
        data = data_sets[key]
        fig = plt.figure()
        ax = fig.add_subplot(111)
        ac.hide_top_and_right_axis(ax)
        # plt.axis('off')
        ac.plot_data(data, ax)
        ac.save_plot(fig)
Example #6
0
def plot_all_data_sets():
    data_sets = pickle.load(open('../data_sets.pickle', 'rb'),
                            encoding='latin1')
    for key in data_sets:
        data = data_sets[key]
        fig = plt.figure()
        ax = fig.add_subplot(111)
        ac.hide_top_and_right_axis(ax)
        # plt.axis('off')
        ac.plot_data(data, ax)
        ac.save_plot(fig)
Example #7
0
def plot_points():
    blue = np.array([[1.7, 1.2, .9, .7, 2.3, 1.75, 2.7, 3.3, 3.1],
                     [-0.23, 0.2, 1.05, 1.87, 0.15, 2.08, -.3, 1.1, 2.2],
                     [.0, .0, .0, .0, .0, .0, .0, .0, .0]])
    red = np.array([[2.26, 1.8, 2.3], [1.38, 1.15, 0.8], [1, 1, 1]])
    data = np.concatenate((red, blue), axis=1)

    ax = plt.subplot(111)
    ac.plot_data(data, ax)
    plt.axis('off')
    ac.save_plot()
    plt.savefig('points.svg', bbox_inches='tight')
Example #8
0
def plot_points():
    blue = np.array([[1.7, 1.2, .9, .7, 2.3, 1.75, 2.7, 3.3, 3.1],
                     [-0.23, 0.2, 1.05, 1.87, 0.15, 2.08, -.3, 1.1, 2.2],
                     [.0, .0, .0, .0, .0, .0, .0, .0, .0]])
    red = np.array([[2.26, 1.8, 2.3], [1.38, 1.15, 0.8], [1, 1, 1]])
    data = np.concatenate((red, blue), axis=1)

    ax = plt.subplot(111)
    ac.plot_data(data, ax)
    plt.axis('off')
    ac.save_plot()
    plt.savefig('points.svg', bbox_inches='tight')