eva4
February 1, 2023, 5:29pm
1
I have a matrix of gene expression, where each column is a patient and each row is labeled as follows:
Column 1: cell line - A, B, C
Column 2: gene - abc, def, ghi (repeats for each cell line)
Column 3: expression level for patient 1
Column 4: expression level for patient 2
and so on for other patients
I want to use apply function to create a vector of most active genes across patients for each cell line. The criterion for active gene is more than 70% of patients show expression level > 0.
The output should be a vector of following format corresponding to cell lines A, B and C:
( [abc, def], [ abc], [ ] )
That means, for example, that for cell line B gene abc had expression level > 0 in more than 70% of patients.
Any suggestions are welcome.
Many thanks!
It's more likely that a question will attract an answer with a reprex
. See the FAQ .
1 Like
eva4
February 2, 2023, 4:42pm
3
Could you please elaborate? Are you saying this can be solved using a reprex function? I would prefer apply function but am also curious about other methods.
reprex stands for REPRoducible EXample, you can use the reprex()
function to create one but it is not a solution to your problem, technocrat is asking you to better explain your problem by providing a reproducible example which is the most effective (and polite) way of asking programming related questions.
If you want more details about it, click on the link technocrat gave you and read the REPREX guide
Sorry to be obscure—just that this is hard to solve in the abstract, and some representative data would make it more likely to attempt. It can be faked.
eva4
February 3, 2023, 4:37pm
6
Sure, please see the code chunk about how to load the data and below the chunk for data itself in text format (you would just need to save it as matrix.txt) Many thanks!:
{r}```
data0 <- read.table('matrix.txt',header=T)
cell_lines <- as.character(unlist(data0[1,]))
datamtx<- as.matrix(data0[-1,])
mode(datamtx) <- 'numeric'
TCGA-A1-A0SD-01A-11R-A115-07 TCGA-A1-A0SE-01A-11R-A084-07 TCGA-A1-A0SH-01A-11R-A084-07 TCGA-A1-A0SJ-01A-11R-A084-07 TCGA-A1-A0SK-01A-12R-A084-07 TCGA-A1-A0SM-01A-11R-A084-07 TCGA-A1-A0SO-01A-22R-A084-07 TCGA-A1-A0SP-01A-11R-A084-07 TCGA-A2-A04N-01A-11R-A115-07 TCGA-A2-A04P-01A-31R-A034-07 TCGA-A2-A04Q-01A-21R-A034-07 TCGA-A2-A04R-01A-41R-A109-07 TCGA-A2-A04T-01A-21R-A034-07 TCGA-A2-A04U-01A-11R-A115-07 TCGA-A2-A04V-01A-21R-A034-07 TCGA-A2-A04W-01A-31R-A115-07 TCGA-A2-A04X-01A-21R-A034-07 TCGA-A2-A04Y-01A-21R-A034-07 TCGA-A2-A0CL-01A-11R-A115-07 TCGA-A2-A0CM-01A-31R-A034-07 TCGA-A2-A0CP-01A-11R-A034-07 TCGA-A2-A0CQ-01A-21R-A034-07 TCGA-A2-A0CS-01A-11R-A115-07 TCGA-A2-A0CT-01A-31R-A056-07 TCGA-A2-A0CU-01A-12R-A034-07 TCGA-A2-A0CV-01A-31R-A115-07 TCGA-A2-A0CW-01A-21R-A115-07 TCGA-A2-A0CX-01A-21R-A00Z-07 TCGA-A2-A0CY-01A-12R-A034-07 TCGA-A2-A0CZ-01A-11R-A034-07 TCGA-A2-A0D0-01A-11R-A00Z-07 TCGA-A2-A0D1-01A-11R-A034-07 TCGA-A2-A0D2-01A-21R-A034-07 TCGA-A2-A0D3-01A-11R-A115-07 TCGA-A2-A0D4-01A-11R-A00Z-07 TCGA-A2-A0EM-01A-11R-A034-07 TCGA-A2-A0EN-01A-13R-A084-07 TCGA-A2-A0EO-01A-11R-A034-07 TCGA-A2-A0EQ-01A-11R-A034-07 TCGA-A2-A0ER-01A-21R-A034-07 TCGA-A2-A0ES-01A-11R-A115-07 TCGA-A2-A0ET-01A-31R-A034-07 TCGA-A2-A0EU-01A-22R-A056-07 TCGA-A2-A0EV-01A-11R-A034-07 TCGA-A2-A0EW-01A-21R-A115-07 TCGA-A2-A0EX-01A-21R-A034-07 TCGA-A2-A0EY-01A-11R-A034-07 TCGA-A2-A0ST-01A-12R-A084-07 TCGA-A2-A0SU-01A-11R-A084-07 TCGA-A2-A0SV-01A-11R-A084-07 TCGA-A2-A0SW-01A-11R-A084-07 TCGA-A2-A0SX-01A-12R-A084-07 TCGA-A2-A0SY-01A-31R-A084-07 TCGA-A2-A0T0-01A-22R-A084-07 TCGA-A2-A0T1-01A-21R-A084-07 TCGA-A2-A0T2-01A-11R-A084-07 TCGA-A2-A0T3-01A-21R-A115-07 TCGA-A2-A0T4-01A-31R-A084-07 TCGA-A2-A0T5-01A-21R-A084-07 TCGA-A2-A0T6-01A-11R-A084-07 TCGA-A2-A0T7-01A-21R-A084-07 TCGA-A2-A0YC-01A-11R-A109-07 TCGA-A2-A0YD-01A-11R-A109-07 TCGA-A2-A0YE-01A-11R-A109-07 TCGA-A2-A0YF-01A-21R-A109-07 TCGA-A2-A0YG-01A-21R-A109-07 TCGA-A2-A0YH-01A-11R-A109-07 TCGA-A2-A0YI-01A-31R-A10J-07 TCGA-A2-A0YJ-01A-11R-A109-07 TCGA-A2-A0YK-01A-22R-A109-07 TCGA-A2-A0YL-01A-21R-A109-07 TCGA-A2-A0YM-01A-11R-A109-07 TCGA-A2-A0YT-01A-11R-A109-07 TCGA-A7-A0CD-01A-11R-A00Z-07 TCGA-A7-A0CE-01A-11R-A00Z-07 TCGA-A7-A0CG-01A-12R-A056-07 TCGA-A7-A0CH-01A-21R-A00Z-07 TCGA-A7-A0CJ-01A-21R-A00Z-07 TCGA-A7-A0D9-01A-31R-A056-07 TCGA-A7-A0DA-01A-31R-A115-07 TCGA-A7-A0DB-01A-11R-A00Z-07 TCGA-A7-A0DC-01A-11R-A00Z-07 TCGA-A7-A13D-01A-13R-A12P-07 TCGA-A7-A13E-01A-11R-A12P-07 TCGA-A7-A13F-01A-11R-A12P-07 TCGA-A8-A06N-01A-12R-A056-07 TCGA-A8-A06O-01A-11R-A00Z-07 TCGA-A8-A06P-01A-11R-A00Z-07 TCGA-A8-A06Q-01A-11R-A034-07 TCGA-A8-A06R-01A-11R-A00Z-07 TCGA-A8-A06T-01A-11R-A00Z-07 TCGA-A8-A06U-01A-11R-A00Z-07 TCGA-A8-A06X-01A-21R-A00Z-07 TCGA-A8-A06Y-01A-21R-A00Z-07 TCGA-A8-A06Z-01A-11R-A00Z-07 TCGA-A8-A075-01A-11R-A084-07 TCGA-A8-A076-01A-21R-A00Z-07 TCGA-A8-A079-01A-21R-A00Z-07 TCGA-A8-A07B-01A-11R-A00Z-07 TCGA-A8-A07C-01A-11R-A034-07 TCGA-A8-A07E-01A-11R-A034-07 TCGA-A8-A07F-01A-11R-A00Z-07 TCGA-A8-A07G-01A-11R-A034-07 TCGA-A8-A07I-01A-11R-A00Z-07 TCGA-A8-A07J-01A-11R-A00Z-07 TCGA-A8-A07L-01A-11R-A040-07 TCGA-A8-A07O-01A-11R-A00Z-07 TCGA-A8-A07P-01A-11R-A00Z-07 TCGA-A8-A07R-01A-21R-A034-07 TCGA-A8-A07S-01A-11R-A034-07 TCGA-A8-A07U-01A-11R-A034-07 TCGA-A8-A07W-01A-11R-A00Z-07 TCGA-A8-A07Z-01A-11R-A00Z-07 TCGA-A8-A081-01A-11R-A00Z-07 TCGA-A8-A082-01A-11R-A00Z-07 TCGA-A8-A083-01A-21R-A00Z-07 TCGA-A8-A084-01A-21R-A00Z-07 TCGA-A8-A085-01A-11R-A00Z-07 TCGA-A8-A086-01A-11R-A00Z-07 TCGA-A8-A08A-01A-11R-A00Z-07 TCGA-A8-A08B-01A-11R-A00Z-07 TCGA-A8-A08C-01A-11R-A00Z-07 TCGA-A8-A08F-01A-11R-A00Z-07 TCGA-A8-A08G-01A-11R-A00Z-07 TCGA-A8-A08H-01A-21R-A00Z-07 TCGA-A8-A08I-01A-11R-A00Z-07 TCGA-A8-A08J-01A-11R-A00Z-07 TCGA-A8-A08L-01A-11R-A00Z-07 TCGA-A8-A08O-01A-21R-A056-07 TCGA-A8-A08P-01A-11R-A00Z-07 TCGA-A8-A08R-01A-11R-A034-07 TCGA-A8-A08S-01A-11R-A034-07 TCGA-A8-A08T-01A-21R-A00Z-07 TCGA-A8-A08X-01A-21R-A00Z-07 TCGA-A8-A08Z-01A-21R-A00Z-07 TCGA-A8-A090-01A-11R-A00Z-07 TCGA-A8-A091-01A-11R-A00Z-07 TCGA-A8-A092-01A-11R-A00Z-07 TCGA-A8-A093-01A-11R-A00Z-07 TCGA-A8-A094-01A-11R-A00Z-07 TCGA-A8-A095-01A-11R-A00Z-07 TCGA-A8-A096-01A-11R-A00Z-07 TCGA-A8-A097-01A-11R-A034-07 TCGA-A8-A099-01A-11R-A00Z-07 TCGA-A8-A09A-01A-11R-A00Z-07 TCGA-A8-A09B-01A-11R-A00Z-07 TCGA-A8-A09C-01A-11R-A00Z-07 TCGA-A8-A09D-01A-11R-A00Z-07 TCGA-A8-A09E-01A-11R-A00Z-07 TCGA-A8-A09G-01A-21R-A00Z-07 TCGA-A8-A09I-01A-22R-A034-07 TCGA-A8-A09K-01A-11R-A00Z-07 TCGA-A8-A09M-01A-11R-A00Z-07 TCGA-A8-A09N-01A-11R-A00Z-07 TCGA-A8-A09Q-01A-11R-A00Z-07 TCGA-A8-A09R-01A-11R-A00Z-07 TCGA-A8-A09T-01A-11R-A00Z-07 TCGA-A8-A09V-01A-11R-A034-07 TCGA-A8-A09W-01A-11R-A00Z-07 TCGA-A8-A09X-01A-11R-A00Z-07 TCGA-A8-A09Z-01A-11R-A00Z-07 TCGA-A8-A0A1-01A-11R-A00Z-07 TCGA-A8-A0A2-01A-11R-A034-07 TCGA-A8-A0A4-01A-11R-A00Z-07 TCGA-A8-A0A6-01A-12R-A056-07 TCGA-A8-A0A7-01A-11R-A040-07 TCGA-A8-A0A9-01A-11R-A00Z-07 TCGA-A8-A0AB-01A-11R-A034-07 TCGA-A8-A0AD-01A-11R-A056-07 TCGA-AN-A03X-01A-21R-A00Z-07 TCGA-AN-A03Y-01A-21R-A00Z-07 TCGA-AN-A041-01A-11R-A034-07 TCGA-AN-A046-01A-21R-A034-07 TCGA-AN-A049-01A-21R-A00Z-07 TCGA-AN-A04A-01A-21R-A034-07 TCGA-AN-A04C-01A-21R-A034-07 TCGA-AN-A04D-01A-21R-A034-07 TCGA-AN-A0AJ-01A-11R-A00Z-07 TCGA-AN-A0AK-01A-21R-A00Z-07 TCGA-AN-A0AL-01A-11R-A00Z-07 TCGA-AN-A0AM-01A-11R-A034-07 TCGA-AN-A0AR-01A-11R-A00Z-07 TCGA-AN-A0AS-01A-11R-A00Z-07 TCGA-AN-A0AT-01A-11R-A034-07 TCGA-AN-A0FD-01A-11R-A034-07 TCGA-AN-A0FE-01A-11R-A00Z-07 TCGA-AN-A0FF-01A-11R-A034-07 TCGA-AN-A0FG-01A-11R-A00Z-07 TCGA-AN-A0FJ-01A-11R-A00Z-07 TCGA-AN-A0FK-01A-11R-A034-07 TCGA-AN-A0FL-01A-11R-A034-07 TCGA-AN-A0FN-01A-11R-A034-07 TCGA-AN-A0FS-01A-11R-A034-07 TCGA-AN-A0FT-01A-11R-A034-07 TCGA-AN-A0FV-01A-11R-A00Z-07 TCGA-AN-A0FW-01A-11R-A034-07 TCGA-AN-A0FX-01A-11R-A034-07 TCGA-AN-A0FY-01A-11R-A034-07 TCGA-AN-A0FZ-01A-11R-A034-07 TCGA-AN-A0G0-01A-11R-A034-07 TCGA-AN-A0XL-01A-11R-A10J-07 TCGA-AN-A0XN-01A-21R-A109-07 TCGA-AN-A0XO-01A-11R-A109-07 TCGA-AN-A0XP-01A-11R-A109-07 TCGA-AN-A0XR-01A-11R-A109-07 TCGA-AN-A0XS-01A-22R-A109-07 TCGA-AN-A0XT-01A-11R-A109-07 TCGA-AN-A0XU-01A-11R-A109-07 TCGA-AN-A0XV-01A-11R-A109-07 TCGA-AN-A0XW-01A-11R-A109-07 TCGA-AO-A03L-01A-41R-A056-07 TCGA-AO-A03M-01B-11R-A10J-07 TCGA-AO-A03N-01B-11R-A10J-07 TCGA-AO-A03O-01A-11R-A00Z-07 TCGA-AO-A03P-01A-11R-A00Z-07 TCGA-AO-A03R-01A-21R-A034-07 TCGA-AO-A03T-01A-21R-A034-07 TCGA-AO-A03U-01B-21R-A10J-07 TCGA-AO-A03V-01A-11R-A115-07 TCGA-AO-A0J2-01A-11R-A034-07 TCGA-AO-A0J3-01A-11R-A034-07 TCGA-AO-A0J4-01A-11R-A034-07 TCGA-AO-A0J5-01A-11R-A034-07 TCGA-AO-A0J6-01A-11R-A034-07 TCGA-AO-A0J7-01A-11R-A034-07 TCGA-AO-A0J8-01A-21R-A034-07 TCGA-AO-A0J9-01A-11R-A034-07 TCGA-AO-A0JA-01A-11R-A056-07 TCGA-AO-A0JB-01A-11R-A056-07 TCGA-AO-A0JC-01A-11R-A056-07 TCGA-AO-A0JD-01A-11R-A056-07 TCGA-AO-A0JE-01A-11R-A056-07 TCGA-AO-A0JF-01A-11R-A056-07 TCGA-AO-A0JG-01A-31R-A084-07 TCGA-AO-A0JI-01A-21R-A056-07 TCGA-AO-A0JJ-01A-11R-A056-07 TCGA-AO-A0JL-01A-11R-A056-07 TCGA-AO-A0JM-01A-21R-A056-07 TCGA-AO-A124-01A-11R-A10J-07 TCGA-AO-A125-01A-11R-A10J-07 TCGA-AO-A126-01A-11R-A10J-07 TCGA-AO-A128-01A-11R-A10J-07 TCGA-AO-A129-01A-21R-A10J-07 TCGA-AO-A12A-01A-21R-A115-07 TCGA-AO-A12B-01A-11R-A10J-07 TCGA-AO-A12C-01A-11R-A10J-07 TCGA-AO-A12D-01A-11R-A115-07 TCGA-AO-A12E-01A-11R-A10J-07 TCGA-AO-A12F-01A-11R-A115-07 TCGA-AO-A12G-01A-11R-A10J-07 TCGA-AO-A12H-01A-11R-A115-07 TCGA-AQ-A04H-01B-11R-A10J-07 TCGA-AQ-A04J-01A-02R-A034-07 TCGA-AQ-A04L-01B-21R-A10J-07 TCGA-AR-A0TP-01A-11R-A084-07 TCGA-AR-A0TQ-01A-11R-A084-07 TCGA-AR-A0TR-01A-11R-A084-07 TCGA-AR-A0TS-01A-11R-A115-07 TCGA-AR-A0TT-01A-31R-A084-07 TCGA-AR-A0TU-01A-31R-A109-07 TCGA-AR-A0TV-01A-21R-A084-07 TCGA-AR-A0TW-01A-11R-A084-07 TCGA-AR-A0TX-01A-11R-A084-07 TCGA-AR-A0TY-01A-12R-A115-07 TCGA-AR-A0TZ-01A-12R-A084-07 TCGA-AR-A0U0-01A-11R-A109-07 TCGA-AR-A0U1-01A-11R-A115-07 TCGA-AR-A0U2-01A-11R-A109-07 TCGA-AR-A0U3-01A-11R-A109-07 TCGA-AR-A0U4-01A-11R-A109-07 TCGA-AR-A1AH-01A-11R-A12D-07 TCGA-AR-A1AI-01A-11R-A12P-07 TCGA-AR-A1AJ-01A-21R-A12P-07 TCGA-AR-A1AK-01A-21R-A12P-07 TCGA-AR-A1AL-01A-21R-A12P-07 TCGA-AR-A1AN-01A-11R-A12P-07 TCGA-AR-A1AO-01A-11R-A12P-07 TCGA-AR-A1AP-01A-11R-A12P-07 TCGA-AR-A1AQ-01A-11R-A12P-07 TCGA-AR-A1AR-01A-31R-A137-07 TCGA-AR-A1AS-01A-11R-A12P-07 TCGA-AR-A1AT-01A-11R-A12P-07 TCGA-AR-A1AU-01A-11R-A12P-07 TCGA-AR-A1AV-01A-21R-A12P-07 TCGA-AR-A1AW-01A-21R-A12P-07 TCGA-AR-A1AX-01A-11R-A12P-07 TCGA-AR-A1AY-01A-21R-A12P-07 TCGA-B6-A0I2-01A-11R-A034-07 TCGA-B6-A0I5-01A-11R-A034-07 TCGA-B6-A0I6-01A-11R-A034-07 TCGA-B6-A0I8-01A-11R-A034-07 TCGA-B6-A0I9-01A-11R-A034-07 TCGA-B6-A0IA-01A-11R-A034-07 TCGA-B6-A0IB-01A-11R-A034-07 TCGA-B6-A0IC-01A-11R-A034-07 TCGA-B6-A0IE-01A-11R-A034-07 TCGA-B6-A0IG-01A-11R-A034-07 TCGA-B6-A0IH-01A-11R-A115-07 TCGA-B6-A0IJ-01A-11R-A034-07 TCGA-B6-A0IK-01A-12R-A056-07 TCGA-B6-A0IM-01A-11R-A034-07 TCGA-B6-A0IN-01A-11R-A034-07 TCGA-B6-A0IO-01A-11R-A034-07 TCGA-B6-A0IP-01A-11R-A034-07 TCGA-B6-A0IQ-01A-11R-A034-07 TCGA-B6-A0RE-01A-11R-A056-07 TCGA-B6-A0RG-01A-11R-A056-07 TCGA-B6-A0RH-01A-21R-A115-07 TCGA-B6-A0RI-01A-11R-A056-07 TCGA-B6-A0RL-01A-11R-A084-07 TCGA-B6-A0RM-01A-11R-A084-07 TCGA-B6-A0RN-01A-12R-A084-07 TCGA-B6-A0RO-01A-22R-A084-07 TCGA-B6-A0RP-01A-21R-A084-07 TCGA-B6-A0RQ-01A-11R-A115-07 TCGA-B6-A0RS-01A-11R-A084-07 TCGA-B6-A0RT-01A-21R-A084-07 TCGA-B6-A0RU-01A-11R-A084-07 TCGA-B6-A0RV-01A-11R-A084-07 TCGA-B6-A0WS-01A-11R-A115-07 TCGA-B6-A0WT-01A-11R-A109-07 TCGA-B6-A0WV-01A-11R-A109-07 TCGA-B6-A0WW-01A-11R-A109-07 TCGA-B6-A0WX-01A-11R-A109-07 TCGA-B6-A0WY-01A-11R-A109-07 TCGA-B6-A0WZ-01A-11R-A109-07 TCGA-B6-A0X0-01A-21R-A115-07 TCGA-B6-A0X1-01A-11R-A109-07 TCGA-B6-A0X4-01A-11R-A109-07 TCGA-B6-A0X5-01A-21R-A109-07 TCGA-B6-A0X7-01A-11R-A10J-07 TCGA-BH-A0AU-01A-11R-A12P-07 TCGA-BH-A0AV-01A-31R-A115-07 TCGA-BH-A0AW-01A-11R-A056-07 TCGA-BH-A0AY-01A-21R-A00Z-07 TCGA-BH-A0AZ-01A-21R-A12P-07 TCGA-BH-A0B0-01A-21R-A115-07 TCGA-BH-A0B1-01A-12R-A056-07 TCGA-BH-A0B2-01A-11R-A10J-07 TCGA-BH-A0B3-01A-11R-A056-07 TCGA-BH-A0B4-01A-11R-A00Z-07 TCGA-BH-A0B5-01A-11R-A12P-07 TCGA-BH-A0B7-01A-12R-A115-07 TCGA-BH-A0B8-01A-21R-A056-07 TCGA-BH-A0B9-01A-11R-A056-07 TCGA-BH-A0BA-01A-11R-A056-07 TCGA-BH-A0BC-01A-22R-A084-07 TCGA-BH-A0BD-01A-11R-A034-07 TCGA-BH-A0BF-01A-21R-A12P-07 TCGA-BH-A0BG-01A-11R-A115-07 TCGA-BH-A0BJ-01A-11R-A056-07 TCGA-BH-A0BL-01A-11R-A115-07 TCGA-BH-A0BM-01A-11R-A056-07 TCGA-BH-A0BO-01A-23R-A12D-07 TCGA-BH-A0BP-01A-11R-A115-07 TCGA-BH-A0BQ-01A-21R-A115-07 TCGA-BH-A0BR-01A-21R-A115-07 TCGA-BH-A0BS-01A-11R-A12P-07 TCGA-BH-A0BT-01A-11R-A12P-07 TCGA-BH-A0BV-01A-11R-A00Z-07 TCGA-BH-A0BW-01A-11R-A115-07 TCGA-BH-A0BZ-01A-31R-A12P-07 TCGA-BH-A0C0-01A-21R-A056-07 TCGA-BH-A0C1-01B-11R-A12D-07 TCGA-BH-A0C3-01A-21R-A12P-07 TCGA-BH-A0C7-01B-11R-A115-07 TCGA-BH-A0DD-01A-31R-A12P-07 TCGA-BH-A0DE-01A-11R-A115-07 TCGA-BH-A0DG-01A-21R-A12P-07 TCGA-BH-A0DH-01A-11R-A084-07 TCGA-BH-A0DI-01A-21R-A12P-07 TCGA-BH-A0DK-01A-21R-A056-07 TCGA-BH-A0DL-01A-11R-A115-07 TCGA-BH-A0DO-01B-11R-A12D-07 TCGA-BH-A0DP-01A-21R-A056-07 TCGA-BH-A0DQ-01A-11R-A084-07 TCGA-BH-A0DS-01A-11R-A056-07 TCGA-BH-A0DT-01A-21R-A12D-07 TCGA-BH-A0DX-01A-11R-A115-07 TCGA-BH-A0DZ-01A-11R-A00Z-07 TCGA-BH-A0E0-01A-11R-A056-07 TCGA-BH-A0E1-01A-11R-A056-07 TCGA-BH-A0E2-01A-11R-A056-07 TCGA-BH-A0E6-01A-11R-A034-07 TCGA-BH-A0E7-01A-11R-A034-07 TCGA-BH-A0E9-01B-11R-A115-07 TCGA-BH-A0EA-01A-11R-A115-07 TCGA-BH-A0EB-01A-11R-A034-07 TCGA-BH-A0EE-01A-11R-A034-07 TCGA-BH-A0EI-01A-11R-A115-07 TCGA-BH-A0GY-01A-11R-A056-07 TCGA-BH-A0GZ-01A-11R-A056-07 TCGA-BH-A0H0-01A-11R-A056-07 TCGA-BH-A0H3-01A-11R-A12P-07 TCGA-BH-A0H5-01A-21R-A115-07 TCGA-BH-A0H6-01A-21R-A056-07 TCGA-BH-A0H7-01A-13R-A056-07 TCGA-BH-A0H9-01A-11R-A056-07 TCGA-BH-A0HA-01A-11R-A12P-07 TCGA-BH-A0HB-01A-11R-A056-07 TCGA-BH-A0HF-01A-11R-A056-07 TCGA-BH-A0HI-01A-11R-A084-07 TCGA-BH-A0HK-01A-11R-A056-07 TCGA-BH-A0HL-01A-11R-A034-07 TCGA-BH-A0HN-01A-11R-A084-07 TCGA-BH-A0HO-01A-11R-A034-07 TCGA-BH-A0HP-01A-12R-A084-07 TCGA-BH-A0HQ-01A-11R-A034-07 TCGA-BH-A0HU-01A-11R-A034-07 TCGA-BH-A0HW-01A-11R-A034-07 TCGA-BH-A0HX-01A-21R-A056-07 TCGA-BH-A0HY-01A-11R-A056-07 TCGA-BH-A0RX-01A-21R-A084-07 TCGA-BH-A0W3-01A-11R-A109-07 TCGA-BH-A0W4-01A-11R-A109-07 TCGA-BH-A0W5-01A-11R-A109-07 TCGA-BH-A0W7-01A-11R-A115-07 TCGA-BH-A0WA-01A-11R-A109-07 TCGA-BH-A18F-01A-11R-A12D-07 TCGA-BH-A18G-01A-11R-A12D-07 TCGA-BH-A18H-01A-11R-A12D-07 TCGA-BH-A18I-01A-11R-A12D-07 TCGA-BH-A18J-01A-11R-A12D-07 TCGA-BH-A18K-01A-11R-A12D-07 TCGA-BH-A18L-01A-32R-A12D-07 TCGA-BH-A18M-01A-11R-A12D-07 TCGA-BH-A18N-01A-11R-A12D-07 TCGA-BH-A18P-01A-11R-A12D-07 TCGA-BH-A18Q-01A-12R-A12D-07 TCGA-BH-A18R-01A-11R-A12D-07 TCGA-BH-A18S-01A-11R-A12D-07 TCGA-BH-A18T-01A-11R-A12D-07 TCGA-BH-A18U-01A-21R-A12D-07 TCGA-BH-A18V-01A-11R-A12D-07 TCGA-BH-A1EO-01A-11R-A137-07 TCGA-BH-A1ES-01A-11R-A137-07 TCGA-BH-A1ET-01A-11R-A137-07 TCGA-BH-A1EU-01A-11R-A137-07 TCGA-BH-A1EV-01A-11R-A137-07 TCGA-BH-A1EW-01A-11R-A137-07 TCGA-BH-A1F0-01A-11R-A137-07 TCGA-C8-A12K-01A-21R-A115-07 TCGA-C8-A12L-01A-11R-A115-07 TCGA-C8-A12M-01A-11R-A115-07 TCGA-C8-A12N-01A-11R-A115-07 TCGA-C8-A12O-01A-11R-A115-07 TCGA-C8-A12P-01A-11R-A115-07 TCGA-C8-A12Q-01A-11R-A115-07 TCGA-C8-A12T-01A-11R-A115-07 TCGA-C8-A12U-01A-11R-A115-07 TCGA-C8-A12V-01A-11R-A115-07 TCGA-C8-A12W-01A-11R-A115-07 TCGA-C8-A12X-01A-11R-A115-07 TCGA-C8-A12Y-01A-11R-A12D-07 TCGA-C8-A12Z-01A-11R-A115-07 TCGA-C8-A130-01A-31R-A115-07 TCGA-C8-A131-01A-11R-A115-07 TCGA-C8-A132-01A-31R-A115-07 TCGA-C8-A133-01A-32R-A12D-07 TCGA-C8-A134-01A-11R-A115-07 TCGA-C8-A135-01A-11R-A115-07 TCGA-C8-A137-01A-11R-A115-07 TCGA-C8-A138-01A-11R-A115-07 TCGA-C8-A1HF-01A-11R-A137-07 TCGA-C8-A1HG-01A-11R-A137-07 TCGA-C8-A1HI-01A-11R-A137-07 TCGA-C8-A1HL-01A-11R-A137-07 TCGA-C8-A1HM-01A-12R-A137-07 TCGA-C8-A1HN-01A-11R-A137-07 TCGA-D8-A13Y-01A-11R-A115-07 TCGA-D8-A13Z-01A-11R-A115-07 TCGA-D8-A140-01A-11R-A115-07 TCGA-D8-A141-01A-11R-A115-07 TCGA-D8-A142-01A-11R-A115-07 TCGA-D8-A143-01A-11R-A115-07 TCGA-D8-A145-01A-11R-A115-07 TCGA-D8-A146-01A-31R-A115-07 TCGA-D8-A147-01A-11R-A115-07 TCGA-E2-A105-01A-11R-A10J-07 TCGA-E2-A106-01A-11R-A10J-07 TCGA-E2-A107-01A-11R-A10J-07 TCGA-E2-A108-01A-13R-A10J-07 TCGA-E2-A109-01A-11R-A10J-07 TCGA-E2-A10A-01A-21R-A115-07 TCGA-E2-A10B-01A-11R-A10J-07 TCGA-E2-A10C-01A-21R-A10J-07 TCGA-E2-A10E-01A-21R-A10J-07 TCGA-E2-A10F-01A-11R-A10J-07 TCGA-E2-A14N-01A-31R-A137-07 TCGA-E2-A14O-01A-31R-A115-07 TCGA-E2-A14P-01A-31R-A12D-07 TCGA-E2-A14Q-01A-11R-A12D-07 TCGA-E2-A14R-01A-11R-A115-07 TCGA-E2-A14S-01A-11R-A12D-07 TCGA-E2-A14T-01A-11R-A115-07 TCGA-E2-A14V-01A-11R-A12D-07 TCGA-E2-A14W-01A-11R-A12D-07 TCGA-E2-A14X-01A-11R-A115-07 TCGA-E2-A14Y-01A-21R-A12D-07 TCGA-E2-A14Z-01A-11R-A115-07 TCGA-E2-A150-01A-11R-A12D-07 TCGA-E2-A152-01A-11R-A12D-07 TCGA-E2-A153-01A-12R-A12D-07 TCGA-E2-A154-01A-11R-A115-07 TCGA-E2-A155-01A-11R-A12D-07 TCGA-E2-A156-01A-11R-A12D-07 TCGA-E2-A158-01A-11R-A12D-07 TCGA-E2-A159-01A-11R-A115-07 TCGA-E2-A15A-01A-11R-A12D-07 TCGA-E2-A15C-01A-31R-A12D-07 TCGA-E2-A15D-01A-11R-A115-07 TCGA-E2-A15E-01A-11R-A12D-07 TCGA-E2-A15F-01A-11R-A115-07 TCGA-E2-A15G-01A-11R-A12D-07 TCGA-E2-A15H-01A-11R-A12D-07 TCGA-E2-A15I-01A-21R-A137-07 TCGA-E2-A15J-01A-11R-A12P-07 TCGA-E2-A15K-01A-11R-A12P-07 TCGA-E2-A15L-01A-11R-A12D-07 TCGA-E2-A15M-01A-11R-A12D-07 TCGA-E2-A15O-01A-11R-A115-07 TCGA-E2-A15P-01A-11R-A115-07 TCGA-E2-A15R-01A-11R-A115-07 TCGA-E2-A15S-01A-11R-A115-07 TCGA-E2-A15T-01A-11R-A115-07 TCGA-E2-A1AZ-01A-11R-A12P-07 TCGA-E2-A1B0-01A-11R-A12P-07 TCGA-E2-A1B1-01A-21R-A12P-07 TCGA-E2-A1B4-01A-11R-A12P-07 TCGA-E2-A1B5-01A-21R-A12P-07 TCGA-E2-A1B6-01A-31R-A12P-07 TCGA-E2-A1BC-01A-11R-A12P-07 TCGA-E2-A1BD-01A-11R-A12P-07
LumA LumA LumA Normal Basal Her2 Basal Basal LumA Basal Basal LumB Basal Basal LumA Her2 Her2 LumB Basal Basal LumA LumA LumA LumB LumB LumA LumB Her2 Her2 Normal Basal Her2 Basal LumA LumB LumA LumA LumA Her2 LumB Normal LumA LumA LumA LumA LumA Her2 Basal LumA LumB LumB Basal LumA Basal Her2 Basal LumB LumB LumA LumA Normal LumA LumA Basal LumA Her2 LumB LumA Basal Normal Normal Basal LumB LumA Basal LumA LumA LumB LumA Basal LumA LumA Basal Basal LumB LumB LumB LumA LumB LumB LumA LumB LumB LumA LumB Her2 Her2 LumB Her2 Basal Basal LumA LumA Her2 LumA LumB Basal LumA Basal LumB Basal LumB LumB Her2 LumB LumA LumB LumB LumA LumA Her2 LumA LumB LumB Basal LumB Her2 Her2 LumA LumB Basal LumB LumA Her2 LumA LumB LumA Her2 LumA Her2 LumB LumB Her2 LumA LumA LumA LumB LumB LumB Her2 Her2 LumB LumB LumB LumB LumB LumA LumA LumB Her2 LumB LumA LumA Normal LumA Her2 LumB LumA LumA LumA LumB LumB LumA LumB LumA Her2 Basal LumB LumB Basal LumB Basal LumA Basal LumA LumB LumB Basal Basal LumB Basal LumA LumA LumA Her2 LumA Basal LumB LumA Basal LumA Her2 LumA LumA LumB LumA LumA Basal LumA Her2 Her2 Basal Her2 LumB LumB Basal Normal Normal LumA Her2 LumB Basal LumA Basal LumB LumA LumA LumB Normal LumA LumB Her2 LumA LumA LumB LumA Basal Her2 Basal LumA LumA Basal Basal LumA LumB LumA Her2 Normal Basal LumA LumA LumB Basal Her2 Basal Her2 LumA Basal LumB Basal LumB LumA Her2 LumB LumB Basal Basal LumB LumB Basal Basal Basal Basal Normal LumA Normal Basal LumA Basal Basal LumB Her2 Normal LumB LumA LumA Basal Basal LumA Basal LumA Her2 LumA LumB LumA Basal Her2 LumA Basal Her2 LumB LumA LumA LumA Basal Basal LumA Her2 LumB LumB LumA LumA LumA LumA Normal Her2 Basal Basal LumA LumA LumA LumB LumB Basal Normal LumA LumA Basal LumA LumB LumA LumB Basal Her2 LumB LumA LumA LumA LumA Basal LumB LumB Her2 LumA Basal LumA LumA LumB Her2 Basal LumA Basal LumA LumA Normal LumA Her2 LumA LumA LumA Basal Her2 LumB LumB LumB LumB LumB LumA LumA LumA Normal LumA Basal LumA LumA LumA LumA LumA LumA Her2 Basal LumB LumA Basal LumA Normal LumA LumA Her2 LumA Normal LumA LumB LumA LumA LumA LumA LumA LumA LumB LumA LumA LumA Basal Basal LumA Normal LumA LumB LumB LumB Her2 Basal LumB LumA LumA Her2 Basal Basal Basal LumA LumA LumB Basal LumB LumA LumA Her2 Basal Her2 LumA LumA Her2 Basal LumA LumA LumA LumA Her2 LumB Basal Basal Her2 LumB LumA Basal Her2 Her2 Her2 LumB Basal Her2 LumB LumA Her2 Her2 Basal LumA LumA Basal Her2 Her2 Her2 Her2 LumB LumA Her2 LumB LumB LumB Basal LumB LumA Basal Basal Normal LumA Basal LumB LumA LumB Basal LumB LumB LumA LumB LumA LumA Basal LumB Her2 LumA Basal LumB LumA Her2 LumB Basal Basal Basal Basal Her2 LumA LumA LumB LumA Basal Basal LumB LumA LumA Normal LumA LumA LumA LumA LumA LumB LumB LumB LumB LumA LumA LumB LumB Basal Her2 Normal LumA Basal Normal LumA LumA
ACTR3B 0.465348584 -0.188155375 -0.234783381 -0.813540155 3.016897131 -0.020508117 -2.256694732 2.107828987 0.314252489 0.321549238 0.117596205 -0.362565473 1.780543099 1.114225337 -1.477900253 -0.50262746 -1.398169922 -1.203649272 -0.64838447 0.72731967 0.35892283 -0.845574663 -0.294403159 -0.740216726 0.162622485 0.437407375 0.71681947 0.123647168 -0.600866617 -0.161637921 2.664161606 2.236856866 2.13790583 0.036442119 -0.587874845 -0.515441263 -0.636816454 -0.136188285 0.82466898 -0.313979803 -0.001821321 -0.802861986 0.198394353 -0.558865818 -0.636816454 0.081824338 -0.074966781 1.738898239 -1.188521866 0.419610426 0.335608828 1.475325427 -0.57915434 0.7691425 0.288268944 0.518027553 -0.396557645 -0.670274717 -0.048627297 -0.69732608 0.810965329 -0.775988593 -0.768869814 2.216034436 -1.459569396 1.077919561 0.495959336 -0.433931238 1.921850872 -0.047915419 -0.027270958 0.139664422 -0.771717325 -1.687904249 3.289012478 -0.576662767 -0.223215364 0.607190266 1.296822031 1.620726499 -0.022821721 0.204445315 1.847815565 2.512709572 -0.462762295 0.213343789 -0.560823482 -1.01001847 0.854923793 -0.677037558 -0.007338375 -1.092062403 0.275277171 0.984841519 -0.128713566 -0.853227351 -0.889355157 -0.179968779 -0.404210333 1.661481512 -1.14527528 0.162266546 -0.990975734 -2.261855847 -0.537153541 0.13325752 1.321025881 -0.768691844 0.547748457 -0.32198843 -0.107001289 -0.293335342 -0.455821485 0.832855576 -0.208265927 -1.043654703 -0.793073664 -0.399049218 -0.089560279 -0.586273119 1.314263041 -0.482516908 0.308023557 0.884288758 -1.093842098 0.169741265 -0.44016017 -0.024779385 0.176860044 -0.554950489 0.80366858 -0.788090518 -0.340141318 -0.536263693 -0.354022938 -0.103263929 1.226524083 0.380457139 -0.621155139 0.517315675 0.585833927 -1.368626988 -0.97513645 -0.55121313 0.827694461 -0.386235415 0.19234339 0.174190502 -0.239232618 0.080578552 -1.036713893 0.079510735 0.460187469 0.559316474 -1.775287267 -0.455643515 -0.508144514 -0.617061841 -1.732040682 -0.875295567 -0.459914783 -0.354022938 -1.306515636 -1.202403486 -0.687537758 -0.559577696 -1.419170322 0.861508664 -0.99257746 -0.934915346 -0.296538793 -1.167699436 -1.274837067 -2.02782597 -0.476287976 0.647767309 2.929692082 -0.943635851 1.010113186 0.467128279 -0.37039613 2.279925482 -0.222681456 -0.083153377 -0.181036595 0.023094407 -1.043298764 -0.162527769 2.705272558 -0.701063439 1.750288286 -1.681497347 -0.490525535 -1.420060169 -0.656393097 -0.942390064 0.127206557 -0.385167598 -1.363465872 2.373359463 0.592062859 -1.535918306 -0.186731619 -0.81176046 -1.122139247 -1.426289102 -0.240478404 1.421222703 -0.462940264 -1.025857754 -2.019105465 1.290771069 -0.954669959 0.48083193 0.150876499 -1.175886032 -0.445855193 0.235234036 -0.493017108 0.391669216 -0.180502687 0.435983619 -0.685224154 0.058332366 -1.001119995 -0.780259861 -0.691156471 -0.350997456 0.164224211 -1.734710224 -0.8395237 -1.057180384 -0.782929403 -0.067314093 0.835881058 -0.753742407 2.010301708 -1.046680184 2.583541428 -0.351175426 -0.857676588 -0.179790809 1.805636797 -0.606561641 0.123113259 -1.369160896 -0.067314093 0.094104233 2.962082528 0.668589739 0.072213986 -0.533594151 0.85937303 1.894443571 3.733758227 -0.351709334 0.459297622 1.323695424 -0.150425844 1.850307138 -0.696080293 -0.343522738 0.254098802 -0.643757264 0.472645333 -0.585027333 0.839084509 -0.806777315 0.367287396 1.091801181 1.771110716 2.036463222 1.605599092 -0.620443261 0.809719543 -0.234071503 0.17152096 -0.390684652 2.564320723 1.954953197 -1.153639846 -0.379828513 0.263175246 0.324574719 -0.859812222 0.17152096 3.327809826 1.767195387 0.505391719 0.417296822 1.121700055 -0.997916544 -0.3705741 0.578537178 -0.102552051 0.326710353 -0.413998655 0.687810444 -1.112706864 -0.535729785 0.153724011 -0.136188285 -1.069994187 -0.362743443 1.655430549 1.385984745 -0.890245004 0.021314712 -0.900567235 -0.365057046 -0.253826116 -0.418269923 0.752769307 -0.388904957 -0.125510115 0.012950146 -0.010007918 1.448096096 0.922196259 -0.627917979 -0.239766526 0.687988413 -1.345846893 0.926645497 0.082180277 -0.719394296 -0.149891935 2.083803106 0.798685435 0.039645569 -0.346904158 0.474602998 -1.183182781 -1.193505012 0.368889122 -1.436611332 -0.750716926 0.389177643 -1.345846893 -0.367904558 -0.380718361 -0.313623864 -0.486076298 -0.851803595 2.687653578 -0.362565473 -0.558865818 0.328845987 0.117596205 0.434203924 -0.705156737 1.698499165 0.173656594 -0.449948492 0.159419035 -0.123196512 -1.112884834 -0.805531528 -0.536085724 -0.451906156 -0.786844732 -0.10290799 0.423881694 0.168495479 -0.967483762 -0.058237649 0.613419198 -0.959119196 -0.386235415 -0.049695113 0.33489695 -1.422017834 -1.206140845 0.319413604 -0.278385905 -0.826887867 -0.00911807 0.157995279 -0.039906792 -2.239609661 2.475869888 -0.303301634 -1.016425371 1.824857501 -0.024779385 1.24841433 -1.057180384 -1.643411877 -0.843439029 -0.840591517 0.885890484 -1.429848491 0.022738468 -0.92637281 -0.31842904 -0.942568034 -0.008228223 0.203199529 -0.147756301 0.160308882 0.20604704 -0.407947692 -0.491593352 -1.434475698 -2.059504539 0.787829296 0.624453306 0.008856848 0.620715947 0.453246659 0.017577353 -0.26290256 1.830018617 -0.824040355 -0.044178059 0.096595805 -0.611010878 1.502020851 0.221708355 0.193589176 -0.668850962 -0.527899127 -0.423964946 1.555055758 0.494179641 -0.188867253 -0.751606773 -0.334268324 1.335263441 0.290226608 -0.51294969 0.316566092 0.023984254 0.203555468 0.47015376 -0.304369451 -0.812472338 -0.687537758 -1.155241572 0.487238831 0.475314876 2.6869417 -0.43660078 -0.310598383 -0.612612603 -0.090628096 1.078987378 -0.539823083 0.113324937 -0.143307064 1.336509227 -0.408125662 -0.155942898 -0.643579294 0.146249293 -0.299386305 -0.328039392 0.030391156 0.285421432 2.691034999 -0.283013112 -0.864617398 -1.120181583 -0.155942898 1.025240593 -0.672410351 -1.047925971 -1.525418106 0.25125129 2.588346604 -0.349217761 -0.402964547 -0.761751034 0.614309045 -0.963568433 -0.093475607 -0.534128059 0.665030349 0.246624084 -1.244760224 -0.144374881 -0.22463912 -0.407947692 -0.856786741 0.213699728 1.101233564 -0.688605575 -1.066256828 1.591895442 0.348066692 0.548816274 -0.432329512 0.780176608 0.742269107 -0.358828114 0.201597803 -0.539289174 2.250916455 0.542409372 -0.630053613 1.640303143 0.334363041 -1.055756628 0.020780804 0.372448512 0.437585344 4.211072394 0.118308083 -0.107001289 -0.230334144 0.188250092 0.782668181 1.088063822 -0.350463548 -0.357226388 0.041781203 0.020424865 -0.254715963 -0.11696758 -1.356703032 -0.37039613 0.411957738 0.621249855 -0.224995059 0.319235635 1.927723865 0.718599165 -0.053432473 -0.052542625 0.599893517 -1.680251561 -1.669395422 0.080400582
ANLN -0.766823723 -0.479250723 -1.331821844 0.398988566 1.524209336 0.117683373 0.88787759 2.201878768 0.149022413 0.480171603 0.936826186 0.458234275 0.719542175 0.505392068 -0.370907184 1.017412289 0.510764475 -0.011851326 0.121264978 1.017263055 -1.661777166 -0.144818395 -0.732947713 0.066645508 0.528821731 -1.485980075 0.132755959 0.354069275 -0.276143897 -1.38285971 2.047571304 -1.171097339 1.139783778 -2.63089967 0.948615634 -0.982615399 -0.979332261 -1.265263693 0.406748709 0.115743337 -0.697877835 -1.128267318 -0.279128567 -0.799207398 -1.788028727 -1.257354316 -0.336285007 0.628658959 -0.624305708 0.556429933 0.576874926 -0.146459964 -1.262577489 1.022635462 0.971896064 0.206626553 1.146797754 0.75744749 -0.38090583 -1.511797474 -0.554016718 -0.670418867 -1.006343529 1.170227417 -0.455074892 0.933393815 -0.000957278 -2.166932644 2.273660093 -1.431808305 -0.233313875 1.580171907 -0.296290422 -0.813832283 0.839078227 -0.248983395 -0.678477477 -0.298976626 -1.48792011 2.104130809 -0.417915744 -1.418377288 2.001308912 1.654490202 1.122174222 -1.26302519 -0.150190802 -0.976347591 0.26661843 -0.444777778 -1.009328199 -0.558792191 1.279466356 -1.35196837 -0.445523946 0.769535405 0.119772642 1.059496142 -0.504023487 0.137083731 -0.088109656 -0.392396812 -1.378830404 1.073822561 -1.742810969 0.488230213 1.959672758 -1.117671738 1.126501994 0.102760021 1.067107052 0.195583272 -0.196453195 0.105296991 -0.277337765 -1.770568405 -0.097660602 -0.074977106 -0.543719605 -0.92889133 0.236025557 -1.160800226 -0.053338245 0.698351014 0.185136926 -0.548942778 -0.185111447 -0.19287159 -0.428063624 0.324073337 1.843867544 -0.916355714 -0.599085242 0.602841559 -0.164964921 -0.067216963 -0.447314748 0.520763121 -0.983212333 1.10769857 0.571651753 0.243487234 0.660445699 -1.550299723 -0.189140752 -0.669075765 0.065600873 0.036500336 -0.188245351 -0.061546089 0.324521037 -0.559090658 -0.482086159 0.961002017 -0.218092056 -0.320913954 -0.741155557 0.115743337 0.803560649 0.557922268 0.363023286 -0.697280901 -0.972318285 -0.465819705 -1.370921028 -0.182872944 -0.451344054 0.104103122 -0.764734454 0.203343416 0.55165446 -0.797715062 -0.879196567 -0.135416683 -0.646989203 0.453608035 1.700752594 1.503167409 1.722092988 1.424222875 0.397794697 1.007264409 0.055452994 1.511076786 -0.436122234 0.671339747 -0.194363925 0.917724295 1.551519071 -0.197199362 0.195434039 -0.719815163 -1.077378686 -0.413140271 0.490916416 -0.036027157 1.019650791 0.864000226 -0.68623762 1.064122382 -0.674597405 -0.412991038 -0.31524308 -1.644764544 0.623435785 -1.326897138 -1.462699645 1.165899645 0.034261833 0.929364509 0.181704555 -0.141684491 1.431983018 -0.310467607 -0.334792671 0.662385735 0.269752334 -1.049919718 -1.000224954 1.390346865 -0.070947801 1.749999657 -0.571924741 1.149633191 -0.741901725 -1.02798239 -0.03617639 -0.135715151 -0.34150818 -1.340178922 0.902950176 0.667310441 -1.51328981 -2.313778432 -0.425228187 -0.365833244 1.78865114 0.713871301 1.497944235 -0.552673616 -0.605502284 0.336758186 1.591215188 -0.442240809 0.038888072 -1.577609458 2.014590695 0.152156317 1.291554272 0.025457055 -1.06738004 -0.283456339 0.594036781 -0.955305664 0.971597597 0.723273013 -1.553881328 1.931318389 -0.292111884 1.839689005 -0.00438965 -0.214808918 -0.047518138 1.252305855 0.354815442 0.835347389 0.434655378 1.904307121 0.670593579 -0.381204297 1.317819372 0.685516931 0.851315376 -0.808012176 -0.515663702 -1.653270855 -0.170785029 -0.345089785 0.584635069 2.146960831 -0.199885566 -0.192573123 -0.749512634 -0.569089304 -0.828307935 -0.429257492 2.523327778 1.3134916 -0.547002742 1.395868505 -0.927697462 2.071747135 0.078882657 1.005324373 0.041126575 -0.006628152 0.399883967 -2.795056546 1.212609738 0.496736524 -0.237044713 0.111564799 0.247367305 -0.601323745 1.264393771 1.247530382 -0.620425636 0.048588251 0.832362719 0.66596734 -0.713248888 -2.304675187 -0.872033357 -1.28167938 -2.208419564 0.977566938 1.283346428 0.480022369 -0.043190366 -1.373607231 -0.419258846 0.449280263 -0.302856697 0.475694597 -1.534033269 0.267215364 -1.543434981 0.524643193 -1.678640554 0.747598077 -1.176768213 0.377797405 1.436907724 -0.380756597 0.829378048 -0.293156518 -0.705637978 -0.237790881 -1.473742926 1.723734557 0.482559339 0.947869466 0.334967384 -1.3756965 0.675518285 0.157976424 -0.259728209 0.223489941 0.135591396 0.347652233 -1.3227186 0.62448042 -2.61015621 -1.771165339 -0.995598715 -1.291230326 -0.043339599 -0.682208315 -0.975153722 -0.818906223 0.896831601 0.733868593 -0.551181281 0.284526453 -0.102585308 0.67402595 1.802231391 -1.260040519 -0.232418474 -0.666240328 -1.439568449 -0.213018116 0.819528636 -1.849065238 -0.275546962 -0.175560501 -0.118851762 -0.808758343 -0.136013618 -0.012000559 1.456308082 0.776997082 0.581351932 0.463308214 -0.579983351 -0.940680778 -3.088748121 -1.097226745 -0.024088475 -1.159307891 0.451071065 -0.639975228 0.781474087 -1.25750355 -0.999777254 0.049185186 -0.402096991 -0.4613427 -1.618051743 0.178421417 -0.961275005 -1.236163156 -1.189303829 0.781623321 2.250976597 -0.865168615 0.416299654 -0.429406726 0.55926537 0.489573315 -0.261966712 0.287212656 0.799232877 -0.829501803 -0.536407162 -1.074841716 0.33183348 1.26902001 0.338548988 0.440475485 -1.118119438 -0.887702877 -0.290022614 1.706721935 0.940855491 -0.46432737 -1.377935003 0.232443953 0.494796488 0.521509289 -1.657001693 0.125294283 1.2876742 1.840136706 0.182301489 -0.27375616 -2.273186913 -1.515976013 0.192747836 -0.495367943 1.046512826 1.409150289 1.613152516 -1.251086508 -1.582981865 0.414508852 1.359903226 0.22005757 1.261558334 0.662385735 1.172615153 0.278109411 -0.904864733 0.457935807 0.224833043 1.102326164 1.263050669 0.076196453 -2.022325359 2.126515838 1.070539423 0.887131422 1.395420805 1.204700361 0.641045341 -0.346283653 1.239621006 1.29528511 0.510167541 0.724168414 0.695366344 -0.66504646 -1.228999947 0.60627393 0.285421854 -2.126639593 -0.693102362 1.102773864 -1.245117167 -1.442105419 0.731033156 0.462412813 0.142306904 0.140963803 -0.649227706 0.383319046 -0.794730392 -0.642213731 1.834018131 0.491214883 0.578068794 -0.127507307 2.454232656 -0.334344971 -0.09333283 2.217846755 0.719691408 1.387511428 1.555548376 0.532851036 0.986222482 -0.507605092 -0.734440048 -0.166158789 0.410330313 -0.575804812 0.847435305 1
system
Closed
March 17, 2023, 4:38pm
7
This topic was automatically closed 42 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.