Questions tagged [save]

To store (data) in a computer or on a storage device.

To store data/state in a computer or on a storage device.

Tag Usage

Tags should reflect the mechanism rather than the goal - "saving" has little - if any - taxonomic value.

10023 questions
41
votes
2 answers

Setting the fmt option in numpy.savetxt

I am looking at the numpy.savetxt, and am stuck at the fmt option. I tried looking at here and also the reference in the link below all the letters that can be used for the fmt option sort give me a general sense of what is going on. What I do not…
leb
  • 544
  • 1
  • 6
  • 17
40
votes
6 answers

Save current page as HTML to server

What approach could someone suggest to save the current page as an HTML file to the server? In this case, also note that security is not an issue. I have spent endless hours searching around for this, and have not found a single thing. Your help is…
anon271334
39
votes
3 answers

Savefig cuts off title

Hey I try to savefig my plot, but it allways cuts off my title. I think it is because of y=1.05 (to set a distance to the title). I can not fix it. Is there a way to save the entire…
qwertz
  • 619
  • 1
  • 7
  • 15
38
votes
4 answers

MySQL : retrieve a large select by chunks

I have select with more then 70 milion rows I'd like to save the selected data into the one large csv file on win2012 R2 Q: How to retrieve the data from MySQL by chunks for better performance ? because when I try to save one the large select I…
Toren
  • 6,648
  • 12
  • 41
  • 62
38
votes
7 answers

How to save a figure in MATLAB from the command line?

Is there a command in MATLAB which allows saving a figure in FIG or JPEG or both formats automatically?
ABC-biophi
  • 505
  • 1
  • 4
  • 10
38
votes
6 answers

Get the html of the javascript-rendered page (after interacting with it)

I would like to be able to save the state of the html page after I've interacted with it. Say I click a checkbox, or the javascript set the values of various elements. How can I save the "javascript-rendered" page? Thanks.
user420667
  • 6,552
  • 15
  • 51
  • 83
37
votes
4 answers

How to save a base64 image to user's disk using JavaScript?

I have converted the source content from the html tag to a base64String using JavaScript. The image was displayed clearly. Now I want to save that image to user's disk using javascript.