polishing (prospector was complaining)

This commit is contained in:
Martin Diehl 2020-01-12 00:14:35 +01:00
parent ddd8027b8a
commit 1bb94f03b8
6 changed files with 11 additions and 7 deletions

View File

@ -2,10 +2,9 @@
import os
import sys
from io import StringIO
from optparse import OptionParser
import numpy as np
import damask

View File

@ -2,6 +2,7 @@
import os
import sys
from io import StringIO
from optparse import OptionParser
import damask

View File

@ -2,6 +2,7 @@
import os
import sys
from io import StringIO
from optparse import OptionParser
import numpy as np

View File

@ -2,6 +2,7 @@
import os
import sys
from io import StringIO
from optparse import OptionParser
from scipy import ndimage

View File

@ -2,10 +2,9 @@
import os
import sys
from io import StringIO
from optparse import OptionParser
import numpy as np
import damask
scriptName = os.path.splitext(os.path.basename(__file__))[0]

View File

@ -274,7 +274,9 @@ class Table():
def append(self,other):
"""
Append other table vertically (similar to numpy.vstack). Requires matching shapes and order.
Append other table vertically (similar to numpy.vstack).
Requires matching labels/shapes and order.
Parameters
----------
@ -290,8 +292,9 @@ class Table():
def join(self,other):
"""
Append other table horizontally (similar to numpy.hstack). Requires matching number of rows
and no common lables
Append other table horizontally (similar to numpy.hstack).
Requires matching number of rows and no common labels.
Parameters
----------