FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-python/tests/test_ggplot.py at require-hashes · Kaggle/docker-python · GitHub
Kaggle
/
docker-python
Public
Notifications
You must be signed in to change notification settings
Fork
1k
Star
2.7k
Code
Issues
25
Pull requests
8
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
docker-python
/
tests
/
test_ggplot.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
12 lines (8 loc) · 266 Bytes
Breadcrumbs
docker-python
/
tests
/
test_ggplot.py
Copy path
File metadata and controls
12 lines (8 loc) · 266 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
import
unittest
import
os
.
path
from
ggplot
import
*
class
TestGgplot
(
unittest
.
TestCase
):
def
test_plot
(
self
):
p
=
ggplot
(
aes
(
x
=
'mpg'
),
data
=
mtcars
)
+
geom_histogram
()
p
.
save
(
"myplot.png"
)
self
.
assertTrue
(
os
.
path
.
isfile
(
"myplot.png"
))
Back
|
FazBrowse Home
|
New Git URL