Numpy savetxt saves 1D array as columnCreate ArrayList from arrayHow do I check if an array includes an object in JavaScript?How to append something to an array?PHP: Delete an element from an arrayHow to insert an item into an array at a specific index (JavaScript)?How do I empty an array in JavaScript?Loop through an array in JavaScriptHow to check if an object is an array?How do I remove a particular element from an array in JavaScript?For-each over an array in JavaScript?
How bug prioritization works in agile projects vs non agile
How to have a sharp product image?
How can I wire a 9-position switch so that each position turns on one more LED than the one before?
How exactly does Hawking radiation decrease the mass of black holes?
How long after the last departure shall the airport stay open for an emergency return?
Check if a string is entirely made of the same substring
std::unique_ptr of base class holding reference of derived class does not show warning in gcc compiler while naked pointer shows it. Why?
"My boss was furious with me and I have been fired" vs. "My boss was furious with me and I was fired"
A strange hotel
Would the change in enthalpy (ΔH) for the dissolution of urea in water be positive or negative?
How do I produce this Greek letter koppa: Ϟ in pdfLaTeX?
Combinatorics problem, right solution?
How can I practically buy stocks?
Is there metaphorical meaning of "aus der Haft entlassen"?
Was Dennis Ritchie being too modest in this quote about C and Pascal?
What makes accurate emulation of old systems a difficult task?
Is there really no use for MD5 anymore?
What does MLD stand for?
I preordered a game on my Xbox while on the home screen of my friend's account. Which of us owns the game?
Why did Rep. Omar conclude her criticism of US troops with the phrase "NotTodaySatan"?
Is Diceware more secure than a long passphrase?
Find a stone which is not the lightest one
Can someone publish a story that happened to you?
How can I get rid of an unhelpful parallel branch when unpivoting a single row?
Numpy savetxt saves 1D array as column
Create ArrayList from arrayHow do I check if an array includes an object in JavaScript?How to append something to an array?PHP: Delete an element from an arrayHow to insert an item into an array at a specific index (JavaScript)?How do I empty an array in JavaScript?Loop through an array in JavaScriptHow to check if an object is an array?How do I remove a particular element from an array in JavaScript?For-each over an array in JavaScript?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I use loadtxt to initialize array.
source = np.loadtxt('source.txt').astype(int)
After that I use this array in function, which body is:
file = open('johnson.txt', 'ab')
first = increase(np.argsort(source[0]))
np.savetxt(file, first, delimiter='-', fmt='%i')
file.close()
As a result, in txt file I should have this:
7-1-3-6-2-4-8-5
But I have this:
7
1
3
6
2
4
8
5
I have to open file in binary mode, because I need to append another rows to file. So, how can I fix that?
Thank you!
python arrays file numpy
add a comment |
I use loadtxt to initialize array.
source = np.loadtxt('source.txt').astype(int)
After that I use this array in function, which body is:
file = open('johnson.txt', 'ab')
first = increase(np.argsort(source[0]))
np.savetxt(file, first, delimiter='-', fmt='%i')
file.close()
As a result, in txt file I should have this:
7-1-3-6-2-4-8-5
But I have this:
7
1
3
6
2
4
8
5
I have to open file in binary mode, because I need to append another rows to file. So, how can I fix that?
Thank you!
python arrays file numpy
Trynp.savetxt(file, np.atleast_2d(first), delimiter='-', fmt='%i')
ornp.savetxt(file, first.reshape(-1, 1), delimiter='-', fmt='%i')
– Warren Weckesser
Mar 22 at 16:24
np.atleast_2d(first)
is working perfect! Thank you!
– D3mark0
Mar 22 at 16:32
add a comment |
I use loadtxt to initialize array.
source = np.loadtxt('source.txt').astype(int)
After that I use this array in function, which body is:
file = open('johnson.txt', 'ab')
first = increase(np.argsort(source[0]))
np.savetxt(file, first, delimiter='-', fmt='%i')
file.close()
As a result, in txt file I should have this:
7-1-3-6-2-4-8-5
But I have this:
7
1
3
6
2
4
8
5
I have to open file in binary mode, because I need to append another rows to file. So, how can I fix that?
Thank you!
python arrays file numpy
I use loadtxt to initialize array.
source = np.loadtxt('source.txt').astype(int)
After that I use this array in function, which body is:
file = open('johnson.txt', 'ab')
first = increase(np.argsort(source[0]))
np.savetxt(file, first, delimiter='-', fmt='%i')
file.close()
As a result, in txt file I should have this:
7-1-3-6-2-4-8-5
But I have this:
7
1
3
6
2
4
8
5
I have to open file in binary mode, because I need to append another rows to file. So, how can I fix that?
Thank you!
python arrays file numpy
python arrays file numpy
asked Mar 22 at 16:09
D3mark0D3mark0
112
112
Trynp.savetxt(file, np.atleast_2d(first), delimiter='-', fmt='%i')
ornp.savetxt(file, first.reshape(-1, 1), delimiter='-', fmt='%i')
– Warren Weckesser
Mar 22 at 16:24
np.atleast_2d(first)
is working perfect! Thank you!
– D3mark0
Mar 22 at 16:32
add a comment |
Trynp.savetxt(file, np.atleast_2d(first), delimiter='-', fmt='%i')
ornp.savetxt(file, first.reshape(-1, 1), delimiter='-', fmt='%i')
– Warren Weckesser
Mar 22 at 16:24
np.atleast_2d(first)
is working perfect! Thank you!
– D3mark0
Mar 22 at 16:32
Try
np.savetxt(file, np.atleast_2d(first), delimiter='-', fmt='%i')
or np.savetxt(file, first.reshape(-1, 1), delimiter='-', fmt='%i')
– Warren Weckesser
Mar 22 at 16:24
Try
np.savetxt(file, np.atleast_2d(first), delimiter='-', fmt='%i')
or np.savetxt(file, first.reshape(-1, 1), delimiter='-', fmt='%i')
– Warren Weckesser
Mar 22 at 16:24
np.atleast_2d(first)
is working perfect! Thank you!– D3mark0
Mar 22 at 16:32
np.atleast_2d(first)
is working perfect! Thank you!– D3mark0
Mar 22 at 16:32
add a comment |
1 Answer
1
active
oldest
votes
savetxt
iterates on the input array, and writes each 'row' to a new line. For the typical 2d array that would be a row. But for a 1d array that would be an element.
So change your write to saving a 2d array:
np.savetxt('test.txt', [first], delimiter=..., fmt=...)
Assuming first
is a 1d array, then np.array([first])
is 1 row 2d, first[None,:]
would also work (or a reshape
).
To append lines, open the file in 'a' append mode. 'wb'` binary doesn't help.
Perfect answer, thank you! It became much clearer for me.
– D3mark0
Mar 22 at 16:37
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55303680%2fnumpy-savetxt-saves-1d-array-as-column%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
savetxt
iterates on the input array, and writes each 'row' to a new line. For the typical 2d array that would be a row. But for a 1d array that would be an element.
So change your write to saving a 2d array:
np.savetxt('test.txt', [first], delimiter=..., fmt=...)
Assuming first
is a 1d array, then np.array([first])
is 1 row 2d, first[None,:]
would also work (or a reshape
).
To append lines, open the file in 'a' append mode. 'wb'` binary doesn't help.
Perfect answer, thank you! It became much clearer for me.
– D3mark0
Mar 22 at 16:37
add a comment |
savetxt
iterates on the input array, and writes each 'row' to a new line. For the typical 2d array that would be a row. But for a 1d array that would be an element.
So change your write to saving a 2d array:
np.savetxt('test.txt', [first], delimiter=..., fmt=...)
Assuming first
is a 1d array, then np.array([first])
is 1 row 2d, first[None,:]
would also work (or a reshape
).
To append lines, open the file in 'a' append mode. 'wb'` binary doesn't help.
Perfect answer, thank you! It became much clearer for me.
– D3mark0
Mar 22 at 16:37
add a comment |
savetxt
iterates on the input array, and writes each 'row' to a new line. For the typical 2d array that would be a row. But for a 1d array that would be an element.
So change your write to saving a 2d array:
np.savetxt('test.txt', [first], delimiter=..., fmt=...)
Assuming first
is a 1d array, then np.array([first])
is 1 row 2d, first[None,:]
would also work (or a reshape
).
To append lines, open the file in 'a' append mode. 'wb'` binary doesn't help.
savetxt
iterates on the input array, and writes each 'row' to a new line. For the typical 2d array that would be a row. But for a 1d array that would be an element.
So change your write to saving a 2d array:
np.savetxt('test.txt', [first], delimiter=..., fmt=...)
Assuming first
is a 1d array, then np.array([first])
is 1 row 2d, first[None,:]
would also work (or a reshape
).
To append lines, open the file in 'a' append mode. 'wb'` binary doesn't help.
answered Mar 22 at 16:30
hpauljhpaulj
119k788162
119k788162
Perfect answer, thank you! It became much clearer for me.
– D3mark0
Mar 22 at 16:37
add a comment |
Perfect answer, thank you! It became much clearer for me.
– D3mark0
Mar 22 at 16:37
Perfect answer, thank you! It became much clearer for me.
– D3mark0
Mar 22 at 16:37
Perfect answer, thank you! It became much clearer for me.
– D3mark0
Mar 22 at 16:37
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55303680%2fnumpy-savetxt-saves-1d-array-as-column%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Try
np.savetxt(file, np.atleast_2d(first), delimiter='-', fmt='%i')
ornp.savetxt(file, first.reshape(-1, 1), delimiter='-', fmt='%i')
– Warren Weckesser
Mar 22 at 16:24
np.atleast_2d(first)
is working perfect! Thank you!– D3mark0
Mar 22 at 16:32