|
655 | 655 | />
|
656 | 656 | </PlotContainer>
|
657 | 657 |
|
| 658 | + <h3><DoubleStratifiedBoxPlot/></h3> |
| 659 | + <PlotContainer |
| 660 | + :pWidth="500" |
| 661 | + :pHeight="300" |
| 662 | + :pMarginTop="10" |
| 663 | + :pMarginLeft="120" |
| 664 | + :pMarginRight="10" |
| 665 | + :pMarginBottom="180" |
| 666 | + > |
| 667 | + <Axis |
| 668 | + slot="axisLeft" |
| 669 | + variable="exposure" |
| 670 | + side="left" |
| 671 | + :tickRotation="-35" |
| 672 | + :getScale="getScale" |
| 673 | + :getStack="getStack" |
| 674 | + /> |
| 675 | + <DoubleStratifiedBoxPlot |
| 676 | + slot="plot" |
| 677 | + data="exposures_data" |
| 678 | + variable="COSMIC 1" |
| 679 | + s="clinical_data" |
| 680 | + x="sex" |
| 681 | + s2="clinical_data" |
| 682 | + x2="sex" |
| 683 | + y="exposure" |
| 684 | + o="sample_id" |
| 685 | + :getData="getData" |
| 686 | + :getScale="getScale" |
| 687 | + :clickHandler="exampleClickHandler" |
| 688 | + :drawOutliers="true" |
| 689 | + /> |
| 690 | + <Axis |
| 691 | + slot="axisBottom" |
| 692 | + variable="sex" |
| 693 | + side="bottom" |
| 694 | + :tickRotation="-65" |
| 695 | + :getScale="getScale" |
| 696 | + :getStack="getStack" |
| 697 | + /> |
| 698 | + </PlotContainer> |
| 699 | + |
658 | 700 | <h3><StratifiedSinaPlot/></h3>
|
659 | 701 | <PlotContainer
|
660 | 702 | :pWidth="500"
|
|
696 | 738 | />
|
697 | 739 | </PlotContainer>
|
698 | 740 |
|
| 741 | + <h3><DoubleStratifiedSinaPlot/></h3> |
| 742 | + <PlotContainer |
| 743 | + :pWidth="500" |
| 744 | + :pHeight="300" |
| 745 | + :pMarginTop="10" |
| 746 | + :pMarginLeft="120" |
| 747 | + :pMarginRight="10" |
| 748 | + :pMarginBottom="180" |
| 749 | + > |
| 750 | + <Axis |
| 751 | + slot="axisLeft" |
| 752 | + variable="exposure" |
| 753 | + side="left" |
| 754 | + :tickRotation="-35" |
| 755 | + :getScale="getScale" |
| 756 | + :getStack="getStack" |
| 757 | + /> |
| 758 | + <DoubleStratifiedSinaPlot |
| 759 | + slot="plot" |
| 760 | + data="exposures_data" |
| 761 | + variable="COSMIC 1" |
| 762 | + s="clinical_data" |
| 763 | + x="sex" |
| 764 | + s2="clinical_data" |
| 765 | + x2="sex" |
| 766 | + y="exposure" |
| 767 | + o="sample_id" |
| 768 | + :getData="getData" |
| 769 | + :getScale="getScale" |
| 770 | + :clickHandler="exampleClickHandler" |
| 771 | + :fillPoints="true" |
| 772 | + strokeColor="gray" |
| 773 | + /> |
| 774 | + <Axis |
| 775 | + slot="axisBottom" |
| 776 | + variable="sex" |
| 777 | + side="bottom" |
| 778 | + :tickRotation="-65" |
| 779 | + :getScale="getScale" |
| 780 | + :getStack="getStack" |
| 781 | + /> |
| 782 | + </PlotContainer> |
| 783 | + |
699 | 784 | <h3><StratifiedScatterPlot/></h3>
|
700 | 785 | <PlotContainer
|
701 | 786 | :pWidth="500"
|
|
736 | 821 | />
|
737 | 822 | </PlotContainer>
|
738 | 823 |
|
| 824 | + <h3><DoubleStratifiedScatterPlot/></h3> |
| 825 | + <PlotContainer |
| 826 | + :pWidth="500" |
| 827 | + :pHeight="300" |
| 828 | + :pMarginTop="10" |
| 829 | + :pMarginLeft="120" |
| 830 | + :pMarginRight="10" |
| 831 | + :pMarginBottom="180" |
| 832 | + > |
| 833 | + <Axis |
| 834 | + slot="axisLeft" |
| 835 | + variable="exposure" |
| 836 | + side="left" |
| 837 | + :tickRotation="-35" |
| 838 | + :getScale="getScale" |
| 839 | + :getStack="getStack" |
| 840 | + /> |
| 841 | + <DoubleStratifiedScatterPlot |
| 842 | + slot="plot" |
| 843 | + data="exposures_data" |
| 844 | + variable="COSMIC 1" |
| 845 | + s="clinical_data" |
| 846 | + x="age" |
| 847 | + s2="clinical_data" |
| 848 | + x2="sex" |
| 849 | + y="exposure" |
| 850 | + o="sample_id" |
| 851 | + :fillPoints="true" |
| 852 | + strokeColor="gray" |
| 853 | + :getData="getData" |
| 854 | + :getScale="getScale" |
| 855 | + :clickHandler="exampleClickHandler" |
| 856 | + /> |
| 857 | + <Axis |
| 858 | + slot="axisBottom" |
| 859 | + variable="age" |
| 860 | + side="bottom" |
| 861 | + :getScale="getScale" |
| 862 | + :getStack="getStack" |
| 863 | + /> |
| 864 | + </PlotContainer> |
| 865 | + |
739 | 866 | <h3><RectPlot/></h3>
|
740 | 867 | <PlotContainer
|
741 | 868 | :pWidth="50"
|
@@ -908,8 +1035,11 @@ import {
|
908 | 1035 | MultiDataTrackPlot,
|
909 | 1036 | HierarchicalMultiTrackPlot,
|
910 | 1037 | StratifiedBoxPlot,
|
| 1038 | + DoubleStratifiedBoxPlot, |
911 | 1039 | StratifiedScatterPlot,
|
| 1040 | + DoubleStratifiedScatterPlot, |
912 | 1041 | StratifiedSinaPlot,
|
| 1042 | + DoubleStratifiedSinaPlot, |
913 | 1043 | StratifiedKaplanMeierPlot,
|
914 | 1044 | CountBarPlot,
|
915 | 1045 | GenomeScatterPlot,
|
@@ -974,7 +1104,7 @@ const xyDataContainer = new DataContainer(
|
974 | 1104 | 'xy_data',
|
975 | 1105 | 'Random Data',
|
976 | 1106 | xyData,
|
977 |
| - expectedDataSource, |
| 1107 | + expectedDataSource |
978 | 1108 | );
|
979 | 1109 | const clinicalDataContainer = new DataContainer(
|
980 | 1110 | 'clinical_data',
|
@@ -1304,8 +1434,11 @@ export default {
|
1304 | 1434 | MultiTrackPlot,
|
1305 | 1435 | HierarchicalMultiTrackPlot,
|
1306 | 1436 | StratifiedBoxPlot,
|
| 1437 | + DoubleStratifiedBoxPlot, |
1307 | 1438 | StratifiedScatterPlot,
|
| 1439 | + DoubleStratifiedScatterPlot, |
1308 | 1440 | StratifiedSinaPlot,
|
| 1441 | + DoubleStratifiedSinaPlot, |
1309 | 1442 | StratifiedKaplanMeierPlot,
|
1310 | 1443 | CountBarPlot,
|
1311 | 1444 | GenomeScatterPlot,
|
|
0 commit comments