search
Search
Login
Unlock 100+ guides
menu
menu
web
search toc
close
Comments
Log in or sign up
Cancel
Post
account_circle
Profile
exit_to_app
Sign out
What does this mean?
Why is this true?
Give me some examples!
search
keyboard_voice
close
Searching Tips
Search for a recipe:
"Creating a table in MySQL"
Search for an API documentation: "@append"
Search for code: "!dataframe"
Apply a tag filter: "#python"
Useful Shortcuts
/ to open search panel
Esc to close search panel
to navigate between search results
d to clear all current filters
Enter to expand content preview
icon_star
Doc Search
icon_star
Code Search Beta
SORRY NOTHING FOUND!
mic
Start speaking...
Voice search is only supported in Safari and Chrome.
Navigate to
chevron_leftDocumentation
Method argpartition
NumPy Random Generator4 topics
Method choiceMethod dotMethod finfoMethod histogramMethod iinfoMethod maxMethod meanMethod placeMethod rootsMethod seedMethod uniformMethod viewMethod zerosMethod sumObject busdaycalendarMethod is_busdayProperty dtypeMethod uniqueMethod loadtxtMethod vsplitMethod fliplrMethod setdiff1dMethod msortMethod argsortMethod lexsortMethod aroundMethod nanmaxMethod nanminMethod nanargmaxMethod nanargminMethod argmaxMethod argminProperty itemsizeMethod spacingMethod fixMethod ceilMethod diffProperty flatProperty realProperty baseMethod flipMethod deleteMethod amaxMethod aminMethod logical_xorMethod logical_orMethod logical_notMethod logical_andMethod logaddexpMethod logaddexp2Method logspaceMethod not_equalMethod equalMethod greater_equalMethod lessMethod less_equalMethod remainderMethod modMethod emptyMethod greaterMethod isfiniteMethod busday_countMethod repeatMethod varMethod random_sampleMethod randomMethod signMethod stdMethod absoluteMethod absMethod sortMethod randintMethod isrealMethod linspaceMethod gradientMethod allMethod sampleProperty TProperty imagMethod covMethod insertMethod logMethod log1pMethod exp2Method expm1Method expMethod arccosMethod cosMethod arcsinMethod sinMethod tanMethod fromiterMethod trim_zerosMethod diagflatMethod savetxtMethod count_nonzeroProperty sizeProperty shapeMethod reshapeMethod resizeMethod triuMethod trilMethod eyeMethod arangeMethod fill_diagonalMethod tileMethod saveMethod transposeMethod swapaxesMethod meshgridProperty mgridMethod rot90Method log2Method radiansMethod deg2radMethod rad2degMethod degreesMethod log10Method appendMethod cumprodProperty nbytesMethod tostringProperty dataMethod modfMethod fmodMethod tolistMethod datetime_as_stringMethod datetime_dataMethod array_splitMethod itemsetMethod floorMethod put_along_axisMethod cumsumMethod bincountMethod putMethod putmaskMethod takeMethod hypotMethod sqrtMethod squareMethod floor_divideMethod triMethod signbitMethod flattenMethod ravelMethod rollMethod isrealobjMethod diagMethod diagonalMethod quantileMethod onesMethod iscomplexobjMethod iscomplexMethod isscalarMethod divmodMethod isnatMethod percentileMethod isnanMethod divideMethod addMethod reciprocalMethod positiveMethod subtractMethod medianMethod isneginfMethod isposinfMethod float_powerMethod powerMethod negativeMethod maximumMethod averageMethod isinfMethod multiplyMethod busday_offsetMethod identityMethod interpMethod squeezeMethod get_printoptionsMethod savez_compressedMethod savezMethod loadMethod asfarrayMethod clipMethod arrayMethod array_equivMethod array_equalMethod frombufferMethod set_string_functionMethod matmulMethod genfromtxtMethod fromfunctionMethod asscalarMethod searchsortedMethod full_likeMethod fullMethod shares_memoryMethod ptpMethod digitizeMethod argwhereMethod geomspaceMethod zeros_likeMethod fabsMethod flatnonzeroMethod vstackMethod dstackMethod fromstringMethod tobytesMethod expand_dimsMethod ranfMethod arctanMethod itemMethod extractMethod compressMethod chooseMethod asarrayMethod asmatrixMethod allcloseMethod iscloseMethod anyMethod corrcoefMethod truncMethod prodMethod crossMethod true_divideMethod hsplitMethod splitMethod rintMethod ediff1dMethod lcmMethod gcdMethod cbrtMethod flipudProperty ndimMethod array2stringMethod set_printoptionsMethod whereMethod hstack
Char32 topics
check_circle
Mark as learned
thumb_up
1
thumb_down
0
chat_bubble_outline
0
Comment
auto_stories Bi-column layout
settings

NumPy | savetxt method

schedule Aug 12, 2023
Last updated
local_offer
PythonNumPy
Tags
mode_heat
Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!

Numpy's savetxt(~) method saves a Numpy array as a text file.

Parameters

1. fname | string

The name of the file. If the file is not in the same directory as the script, make sure to include the path to the file as well.

2. X | array-like | optional

A 1D or 2D array that you wish to save.

3. fmt | string or sequence<string> | optional

The format in which to save the data. The syntax follows that of Python's standard string formatter:

Format

Description

%d

To save as an integer

%f

To save as a float

%s

To save as a string

By default, fmt="%.18e", which means to store each value as a float (this is implicit) with 18 precision (i.e. up to 18 decimal places will be shown).

WARNING

The formats in the table are not exhaustive

Consult Python's official documentation to find out the details.

4. delimiterlink | string | optional

The string used to separate your data. By default, the delimiter is a single whitespace.

5. newlinelink | string | optional

The string used to denote a new line. By default, for 1D arrays, each value is stored in a separate line, and for 2D arrays, each row is stored in a separate line.

6. headerlink | string | optional

The string written at the very first line of the file. By default, no header will be written.

7. footerlink | string | optional

The string written at the very bottom of the file. By default, no footer will be written.

8. commentslink | string or list<string> | optional

The string to prepend to the header and footer if they are specified. The intention is to mark them as comments. By default, comments="#".

9. encoding | string | optional

The encoding to use when writing the file (e.g. "latin-1", "iso-8859-1"). By default, encoding="bytes".

Return value

None.

Examples

Basic usage

To save a 1D Numpy array of integers:

x = np.array([3,4,5])
np.savetxt("my_data", x)

This creates the following text file called "my_data" in the same directory as your Python script:

3.000000000000000000e+00
4.000000000000000000e+00
5.000000000000000000e+00

As explained in the fmt parameter above, all values are stored as type float with a precision of 18 - that's 18 zeros!

Since this is not what you want in this case, you can specify the fmt parameter like so:

x = np.array([3,4,5])
np.savetxt("my_data", x, fmt="%d")

Here, the %d just means to store the values as an integer. Inspecting our "my_data":

3
4
5

We see that the numbers are indeed stored as integers.

Specifying delimiter parameter

The default delimiter used to separate the values is a single whitespace. We can specify one using the delimiter parameter:

x = np.array([[3,4],[5,6]])
np.savetxt("my_data", x, fmt="%d", delimiter=",")

We end up with the following "my_data" text file:

3,4
5,6

Note that the delimiter only comes into play if the array is 2D.

Specifying newline parameter

By default, for 1D arrays, each value is stored in a separate line, and for 2D arrays, each row is stored in a separate line.

To separate lines using @ instead:

x = np.array([[3,4],[5,6]])
np.savetxt("my_data", x, fmt="%d", newline="@")

The output is as follows:

3 4@5 6@

Specifying header

To save a 1D array of integers with a header:

x = np.array([3,4,5])
np.savetxt("my_data", x, fmt="%d", header="My numbers")

Our "my_data" file is as follows:

# My numbers
3
4
5

Notice how the # has been appended to our specified header. You can control this using the comments parameter.

To save a 1D array of integers with a footer:

x = np.array([3,4,5])
np.savetxt("my_data", x, fmt="%d", footer="My footer")

Our "my_data" file is as follows:

3
4
5
# My footer

Again, notice how the # has been appended to our specified footer. You can control this using the comments parameter.

Specifying comments

To save a 1D array of integers with the prefix "// " attached to header:

x = np.array([3,4,5])
np.savetxt("my_data", x, fmt="%d", header="My numbers", comments="// ")

The output is as follows:

// My numbers
3
4
5

Note that comments is only relevant if the header or footer is set. Also, by default, comments="# ".

robocat
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
1
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!