Skip to content

Commit

Permalink
removed windows from setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkokotila committed Apr 17, 2018
1 parent 76ae466 commit 711281c
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 67 deletions.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,5 @@ def check_dependencies():
'Topic :: Multimedia :: Graphics',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: Windows',
'Operating System :: MacOS'],
)
134 changes: 68 additions & 66 deletions test_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,40 +223,40 @@ def grid_full(df):
def box_full(df):

ast.box(data=df,
x='A',
y='even',
hue='odd',
style='astetik',
dpi=72,
title='This is a title',
sub_title='And this a subtitle',
x_label='this is x label',
y_label='and this y',
legend=False,
x_scale='log',
y_scale='symlog',
x_limit=1,
y_limit=[1,21])
x='A',
y='even',
hue='odd',
style='astetik',
dpi=72,
title='This is a title',
sub_title='And this a subtitle',
x_label='this is x label',
y_label='and this y',
legend=False,
x_scale='log',
y_scale='symlog',
x_limit=1,
y_limit=[1, 21])


def violin_full(df):

ast.violin(data=df,
x='A',
y='even',
hue='odd',
split=False,
style='astetik',
dpi=72,
title='This is a title',
sub_title='And this a subtitle',
x_label='this is x label',
y_label='and this y',
legend=False,
x_scale='log',
y_scale='symlog',
x_limit=1,
y_limit=[1,21])
x='A',
y='even',
hue='odd',
split=False,
style='astetik',
dpi=72,
title='This is a title',
sub_title='And this a subtitle',
x_label='this is x label',
y_label='and this y',
legend=False,
x_scale='log',
y_scale='symlog',
x_limit=1,
y_limit=[1, 21])


def strip_full(df):
Expand Down Expand Up @@ -293,29 +293,29 @@ def count_full(df):
legend=False,
x_scale='log',
y_scale='symlog',
x_limit=[10,20],
y_limit=[1,21])
x_limit=[10, 20],
y_limit=[1, 21])


def bars_full(df):

ast.bars(data=df,
x='cats',
y='B',
hue='odd',
row='even',
col='other',
style='astetik',
dpi=72,
title='This is a title',
sub_title='And this a subtitle',
x_label='this is x label',
y_label='and this y',
legend=False,
x_scale='log',
y_scale='symlog',
x_limit=[10,20],
y_limit=[1,21])
x='cats',
y='B',
hue='odd',
row='even',
col='other',
style='astetik',
dpi=72,
title='This is a title',
sub_title='And this a subtitle',
x_label='this is x label',
y_label='and this y',
legend=False,
x_scale='log',
y_scale='symlog',
x_limit=[10, 20],
y_limit=[1, 21])

def overlap_full(df):

Expand All @@ -334,8 +334,9 @@ def overlap_full(df):
legend=False,
x_scale='log',
y_scale='symlog',
x_limit=[10,20],
y_limit=[1,21])
x_limit=[10, 20],
y_limit=[1, 21])


def multikde_full(df):

Expand Down Expand Up @@ -373,28 +374,29 @@ def compare_full(df):
legend=False,
x_scale='log',
y_scale='symlog',
x_limit=[10,20],
y_limit=[1,21])
x_limit=[10, 20],
y_limit=[1, 21])


def multicount_full(df):

ast.multicount(data=df,
x='A',
hue='cats',
col='other',
row='odd',
style='astetik',
dpi=72,
title='This is a title',
sub_title='And this a subtitle',
x_label='this is x label',
y_label='and this y',
legend=False,
x_scale='log',
y_scale='symlog',
x_limit=[10,20],
y_limit=[1,21])
x='A',
hue='cats',
col='other',
row='odd',
style='astetik',
dpi=72,
title='This is a title',
sub_title='And this a subtitle',
x_label='this is x label',
y_label='and this y',
legend=False,
x_scale='log',
y_scale='symlog',
x_limit=[10, 20],
y_limit=[1, 21])


# create the dataset
df = create_data()
Expand Down

0 comments on commit 711281c

Please sign in to comment.