Skip to content

Commit

Permalink
Update ANowoa.py
Browse files Browse the repository at this point in the history
  • Loading branch information
molinainat committed Oct 11, 2017
1 parent 7279c70 commit 440b577
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ANowoa.py
Expand Up @@ -308,7 +308,7 @@

groups = data.groupby(data[E])

for key, group in groups:
for key, group in groups: # ERROR (working on it)
interaction_plot(X, group, np.log(Y+1), colors=['r','b'], markers=['D','^'], ms=10, ax=plt.gca())

plt.show() #?
Expand All @@ -319,7 +319,7 @@

s = 100

for key, group in groups:
for key, group in groups: # ERROR (working on it)

group.plot(ax=ax, kind='scatter', x=X, y=S, label=key, color=colors[key-1], alpha=0.3, s=s)

Expand Down Expand Up @@ -442,7 +442,7 @@

print ' '

for values, group in groups:
for values, group in groups: # ERROR (working on it)
i, j = values
group.plot(ax=ax, kind='scatter', x=X, y=S, label=values, color=colors[i-1], alpha=0.3, s=s, marker=symbols[j-1], edgecolors='black')

Expand Down

0 comments on commit 440b577

Please sign in to comment.