Skip to main content
Code Review

Return to Question

edited tags
Link
Toby Speight
  • 87.8k
  • 14
  • 104
  • 325
replaced http://codereview.stackexchange.com/ with https://codereview.stackexchange.com/
Source Link

The structure of the file is that the first 2 lines provide the parameters that were used to general the 2D histogram with a C++ program C++ program. I am aiming for readability and efficiency in the code, and I would like to make the script as R-like as possible as I haven't done much coding in R.

The structure of the file is that the first 2 lines provide the parameters that were used to general the 2D histogram with a C++ program. I am aiming for readability and efficiency in the code, and I would like to make the script as R-like as possible as I haven't done much coding in R.

The structure of the file is that the first 2 lines provide the parameters that were used to general the 2D histogram with a C++ program. I am aiming for readability and efficiency in the code, and I would like to make the script as R-like as possible as I haven't done much coding in R.

Notice removed Draw attention by sunny
Bounty Ended with janos's answer chosen by sunny
added 17 characters in body; edited tags; edited title
Source Link
Jamal
  • 35.2k
  • 13
  • 134
  • 238

Plotting 2d2D histograms from files of matrices in R

I wrote a script to turn a file like this one into a colored 2d2D histogram:

xbins, ybins, xmin, xmax, ymin, ymax
12, 12, -0.1, 24, -0.1, 25.1
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
xbins, ybins, xmin, xmax, ymin, ymax
12, 12, -0.1, 24, -0.1, 25.1
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0

Plotting 2d histograms from files of matrices in R

I wrote a script to turn a file like this one into a colored 2d histogram:

xbins, ybins, xmin, xmax, ymin, ymax
12, 12, -0.1, 24, -0.1, 25.1
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0

Plotting 2D histograms from files of matrices in R

I wrote a script to turn a file like this one into a colored 2D histogram:

xbins, ybins, xmin, xmax, ymin, ymax
12, 12, -0.1, 24, -0.1, 25.1
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
Tweeted twitter.com/#!/StackCodeReview/status/639127367659728897
markdown fix
Source Link
janos
  • 112.9k
  • 15
  • 154
  • 396
Loading
Notice added Draw attention by sunny
Bounty Started worth 50 reputation by sunny
added 1251 characters in body
Source Link
sunny
  • 1.8k
  • 1
  • 13
  • 29
Loading
Post Undeleted by sunny
Post Deleted by sunny
deleted 36 characters in body
Source Link
sunny
  • 1.8k
  • 1
  • 13
  • 29
Loading
added 9 characters in body
Source Link
sunny
  • 1.8k
  • 1
  • 13
  • 29
Loading
Source Link
sunny
  • 1.8k
  • 1
  • 13
  • 29
Loading
lang-r

AltStyle によって変換されたページ (->オリジナル) /