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;








1















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!










share|improve this question






















  • 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

















1















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!










share|improve this question






















  • 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













1












1








1








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!










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 22 at 16:09









D3mark0D3mark0

112




112












  • 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

















  • 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
















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












1 Answer
1






active

oldest

votes


















0














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.






share|improve this answer























  • Perfect answer, thank you! It became much clearer for me.

    – D3mark0
    Mar 22 at 16:37











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
);



);













draft saved

draft discarded


















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









0














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.






share|improve this answer























  • Perfect answer, thank you! It became much clearer for me.

    – D3mark0
    Mar 22 at 16:37















0














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.






share|improve this answer























  • Perfect answer, thank you! It became much clearer for me.

    – D3mark0
    Mar 22 at 16:37













0












0








0







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.






share|improve this answer













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.







share|improve this answer












share|improve this answer



share|improve this answer










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

















  • 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



















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript