-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Улучшение визуализации замеров #100 #101
Conversation
plt.title(u'Сортировка целых чисел (' + integer_type + ')', size=14) | ||
plt.xlabel(u'Количество элементов в массиве, шт', size=10) | ||
plt.ylabel(u'Среднее время сортировки, с', size=10) | ||
plt.grid(True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Надо не забыть это тоже перевести )
plt.title(u'Доступ к элементам контейнеров размера ' + str(array_size), size=14) | ||
plt.xlabel(u'Показатель разброса, ед', size=10) | ||
plt.ylabel(u'Среднее время доступа, с', size=10) | ||
plt.grid(True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
наконец добавили малтилайн комменты на гитхабе. ура. )
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
plt.legend(loc='lower left') | ||
plt.tight_layout() | ||
plt.savefig(file_name, format='png') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
может выложишь и результат тоже? будет наглядней и можно в включить в документацию.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Да, хорошая идея, надо добавить. Только, наверное, нужно сделать описание к методике замеров, потому что она не совсем очевидная. Подумаю.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Исходники тестов вполне себе описание.
No description provided.