Directory src/dr/app/gui/chart/

Total Files:
27
Deleted Files:
0
Lines of Code:
1462

[root]/src/dr/app/gui/chart

Lines of Code

src/dr/app/gui/chart/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 95 (100.0%) 6525 (100.0%) 68.6
rambaut 65 (68.4%) 6367 (97.6%) 97.9
dong.w.xie 23 (24.2%) 150 (2.3%) 6.5
tbcbedford@gmail.com 3 (3.2%) 4 (0.1%) 1.3
msuchard 2 (2.1%) 2 (0.0%) 1.0
baele.guy@gmail.com 2 (2.1%) 2 (0.0%) 1.0

Most Recent Commits

rambaut 2013-04-24 00:23 Rev.: 5604

Finished tipdate precision for Pathogen. Now shows these as error bars (the points are given a date that is midpoint within the specified precision).

115 lines of code changed in 1 file:

  • src/dr/app/gui/chart: ErrorBarPlot.java (new 115)
rambaut 2012-11-30 22:06 Rev.: 5265

Pathogen - you can now copy names of selected taxa to the clipboard.

49 lines of code changed in 8 files:

  • src/dr/app/gui/chart: ChartSelector.java (+1 -5), JChart.java (new), Plot.java (new), ScatterPlot.java (+3 -3)
baele.guy@gmail.com 2012-10-02 08:34 Rev.: 5183

Log transformed kernel density estimation can also be used in Tracer

2 lines of code changed in 2 files:

  • src/dr/app/gui/chart: KDENumericalDensityPlot.java (+2)
rambaut 2012-08-04 03:49 Rev.: 5097

Porting fixes from 1.7.3 back into the trunk

0 lines of code changed in 2 files:

  • src/dr/app/gui/chart: Axis.java (new)
rambaut 2012-02-28 04:09 Rev.: 4738

Removed unwanted import.

0 lines of code changed in 2 files:

  • src/dr/app/gui/chart: LinePlot.java (new)
tbcbedford@gmail.com 2011-12-15 06:06 Rev.: 4544

Tweaking colors to make Tracer plots less garish. Feel free to roll this back if you're unhappy.

Before: http://imgur.com/1BpFx,UQkAl#0
After: http://imgur.com/1BpFx,UQkAl#1

4 lines of code changed in 3 files:

  • src/dr/app/gui/chart: FrequencyPlot.java (+3 -2), Plot.java (+1 -1)
msuchard 2011-09-12 21:57 Rev.: 4305

Fixes to HPM specification in BEAUti

2 lines of code changed in 2 files:

  • src/dr/app/gui/chart: PDFPlot.java (+2 -1)
rambaut 2011-06-22 01:40 Rev.: 4057

Cleaned up PriorDialog to better render distributions if possible.

478 lines of code changed in 6 files:

  • src/dr/app/gui/chart: Axis.java (+12 -6), CategoryDensityPlot.java (new), FrequencyPlot.java (+9 -9), JChart.java (+429 -424), PDFPlot.java (+21 -4)
rambaut 2011-06-06 11:32 Rev.: 4010

Visual tweaks.

57 lines of code changed in 2 files:

  • src/dr/app/gui/chart: NumericalDensityPlot.java (+57 -22)
rambaut 2011-06-06 05:44 Rev.: 4007

Working towards Tracer 1.6. Switched trace 'types' (in the GUI) to 'real', 'integer' and 'categorical' as the previous ones were in programmers' jargon. These buttons also are now disabled when no trace is selected. Also disabled the confirmation box for setting types - if you press the button, then you probably intended to do it (this is a static switch at the top of the TracerFrame.java).

Cleaned up some issues with the generification of 'Variate' - in particular some methods in the plotting were not being overridden.

In 'distribution' tab, for real traces, KDEs are now the default. Histogram estimates can also be shown.

Options for plotting are now stored for specific traces (for example, if you set a manual range for a trace it is now remembered and used for this trace only).

Cleaned up some odd code in Skyline plotting (causing an erroneous warning box to appear).

Removed a few exclamation marks from dialog box messages and cleaned up the text.

195 lines of code changed in 18 files:

  • src/dr/app/gui/chart: AreaPlot.java (+12 -12), Axis.java (+1 -1), ChartSetupDialog.java (+139 -131), DensityEstimatePlot.java (+5 -5), FrequencyPlot.java (+1 -1), KDENumericalDensityPlot.java (+7 -3), LineDistributionPlot.java (+1 -1), LinePlot.java (+7 -6), NumericalDensityPlot.java (+7 -7), PDFPlot.java (+2 -2), Plot.java (+6 -6), RegressionPlot.java (new), ScatterPlot.java (+4 -4)
dong.w.xie 2011-02-17 16:46 Rev.: 3807

Trunk new Trace: remove static convert method from Trace.

1 lines of code changed in 1 file:

  • src/dr/app/gui/chart: FrequencyPlot.java (+1 -1)
dong.w.xie 2011-02-17 15:31 Rev.: 3805

Trunk new Trace: 1) Try to replace Double[] as List<Double>, which save some memory, but it still crashes after loading a big log; 2) use traceType to detemine type, instead of prime type (T) of List<T> in Trace, and integer is stored as List<Double> currently for simlple solution of plotting.

52 lines of code changed in 9 files:

  • src/dr/app/gui/chart: AreaPlot.java (+4 -3), CategoryDensityPlot.java (+9 -8), FrequencyPlot.java (+20 -19), KDENumericalDensityPlot.java (+3 -1), LinePlot.java (+2 -1), NumericalDensityPlot.java (+5 -5), Plot.java (+4 -3), RegressionPlot.java (+3 -2), ScatterPlot.java (+2 -1)
dong.w.xie 2011-02-16 16:32 Rev.: 3804

Trunk: starts using List instead array in Trace, and return List for getValues.

3 lines of code changed in 1 file:

  • src/dr/app/gui/chart: KDENumericalDensityPlot.java (+3 -3)
dong.w.xie 2011-02-15 09:08 Rev.: 3796

Trunk: big change of new Tracer, and this check-in starts using List instead array in Variate.

92 lines of code changed in 11 files:

  • src/dr/app/gui/chart: AreaPlot.java (+13 -13), CategoryDensityPlot.java (+9 -9), DensityEstimatePlot.java (+4 -4), FrequencyPlot.java (+19 -19), KDENumericalDensityPlot.java (+12 -12), LineDistributionPlot.java (+2 -2), LinePlot.java (+5 -5), NumericalDensityPlot.java (+6 -6), Plot.java (+16 -14), RegressionPlot.java (+2 -2), ScatterPlot.java (+4 -4)
dong.w.xie 2011-02-03 16:30 Rev.: 3785

Trunk: new Tracer dev: make it complied, but there is still casting problem.

2 lines of code changed in 1 file:

  • src/dr/app/gui/chart: FrequencyPlot.java (+2 -2)
rambaut 2010-09-07 10:37 Rev.: 3497

Switched all uses of org.virion.jam.* to jam.* (org.virion.jam.* is not being updated or fixed). This has touched alot of files but mainly just in the import statements.

5473 lines of code changed in 26 files:

  • src/dr/app/gui/chart: AreaPlot.java (+161), Axis.java (+855), BlankAxis.java (new 72), CategoryDensityPlot.java (+188), ChartException.java (new 37), ChartLayout.java (new 339), ChartRuntimeException.java (new 12), ChartSelector.java (+113), ChartSetupDialog.java (+185), DensityEstimatePlot.java (+98), DiscreteAxis.java (new 100), DiscreteJChart.java (new 111), FrequencyPlot.java (+310), JChart.java (+663), JChartPanel.java (new 147), KDENumericalDensityPlot.java (+185), KDESetupDialog.java (new 190), LineDistributionPlot.java (+97), LinePlot.java (+92), LinearAxis.java (new 59), LogAxis.java (new 224), NumericalDensityPlot.java (+156), PDFPlot.java (+135), Plot.java (+622), RegressionPlot.java (+131), ScatterPlot.java (+191)
Generated by StatSVN 0.7.0