NATIONAL CANCER INSTITUTE - CANCER.GOV

Search Results for: dual or triple color Fluorospot

Total Results Found: 123

R Introductory Series: Change to color of the points by species to be color blind friendly, and change the legend title to "Iris Species". Label the x and y axis to eliminate the variable names and add unit information.

Web Page

Bioinformatics

{{Sdet}} Solution{{Esum}} #multiple ways to find color blind friendly palettes. #using color brewer scales RColorBrewer :: display.brewer.all ( colorblindFriendly = TRUE ) ggplot ( iris ) + geom_point ( aes ( Petal.Length , Petal.Width , color = Species )) + coord_fixed ( ratio = 1 , Read More...

Clinical Support Laboratory –Cellular Immunology
Frederick, MD

Core Facility

Clinical Support Laboratory – Cellular Immunology offers a spectrum of bioassays to assess cellular responses to antigens and mitogens including ELISPOT, cytotoxicity assays, and proliferation assays. Established Technologies Elispot Assays, Dual or Triple Color Fluorospot Assays, Read More...

R Introductory Series: Play with the theme to make this a bit nicer. Change font style to "Times". Change all font sizes to 12 pt font. Bold the legend title and the axes titles. Increase the size of the points on the plot to 2. Bonus: fill the points with color and have a black outline around each point.

Web Page

Bioinformatics

{{Sdet}} Solution{{Esum}} ggplot ( iris ) + geom_point ( aes ( Petal.Length , Petal.Width , fill = Species ), size = 2 , shape = 21 ) + coord_fixed ( ratio = 1 , ylim = c ( 0 , 2.75 ), xlim = c ( 0 , 7 )) + scale_y_continuous ( breaks = c ( 0 , 0.5 , 1 , 1.5 , 2 , 2.5 )) + scale_x_continuous ( breaks = c ( 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 )) + scale_fill_ Read More...

Data Wrangling with R: Challenge Question

Web Page

Bioinformatics

Using the boxplot you created above, reorder the x-axis so that color is organized from worst (J) to best (D). There are multiple possible solutions. Hint: Check out functions in the forcats package (a tidyverse Read More...

Data Visualization with R: Question 3

Web Page

Bioinformatics

Change to color of the points by species to be color blind friendly, and change the legend title to "Iris Species". Label the x and y axis to eliminate the variable names and Read More...

R Introductory Series: Colors

Web Page

Bioinformatics

ggplot2 will automatically assign colors to the categories in our data. Colors are assigned to the fill and color aesthetics in aes() . We can change the default colors by providing an additional layer to our Read More...

Data Wrangling with R: Colors

Web Page

Bioinformatics

ggplot2 will automatically assign colors to the categories in our data. Colors are assigned to the fill and color aesthetics in aes() . We can change the default colors by providing an additional layer to our Read More...

Data Visualization with R: Question 3

Web Page

Bioinformatics

What if we want to represent the number of cylinders (cyl) by color and shape? {{Sdet}} Possible Solution{{Esum}} ggplot(mtcars, aes(wt, mpg)) + geom_point(aes(color = factor(cyl),shape = factor(cyl))) {{Edet}}

Data Visualization with R: Question 4

Web Page

Bioinformatics

Color the points from question 3 by Pclass. Remember that Pclass is a proxy for socioeconomic status. While the values are treated as numeric upon loading, they are really categorical and should be treated as such. Read More...

Data Visualization with R: stat = count

Web Page

Bioinformatics

Let's take a look at a bar plot constructed using the default stat="count" transformation. Below, we plot the number of tooth length measurements taken at each dose. Setting color="black& Read More...

Data Visualization with R: Colors

Web Page

Bioinformatics

ggplot2 will automatically assign colors to the categories in our data. Colors are assigned to the fill and color aesthetics in aes() . We can change the default colors by providing an additional layer to our Read More...

Data Visualization with R: Histogram

Web Page

Bioinformatics

Understanding data distribution can help us decide appropriate downstream steps in analysis such as which statistical test to use. A histogram is a good way to visualize distribution. It divides the data into bins or Read More...

R Introductory Series: Fix the axes so that the dimensions on the x-axis and the y-axis are equal. Both axes should start at 0. Label the axis breaks every 0.5 units on the y-axis and every 1.0 units on the x-axis.

Web Page

Bioinformatics

{{Sdet}} Solution{{Esum}} ggplot ( iris ) + geom_point ( aes ( Petal.Length , Petal.Width , color = Species )) + coord_fixed ( ratio = 1 , ylim = c ( 0 , 2.75 ), xlim = c ( 0 , 7 )) + scale_y_continuous ( breaks = c ( 0 , 0.5 , 1 , 1.5 , 2 , 2.5 )) + scale_x_continuous ( breaks = c ( 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 )) {{Edet}}

Data Wrangling with R: Plotting with ggplot2

Web Page

Bioinformatics

For the following plots, let's use the diamonds data ( ?diamonds ). The diamonds dataset comes in ggplot2 and contains information about ~54,000 diamonds, including the price, carat, color, clarity, and cut of each diamond. --- R4 Read More...

Data Visualization with R: Histogram

Web Page

Bioinformatics

Understanding data distribution can help us decide appropriate downstream steps in analysis such as which statistical test to use. A histogram is a good way to visualize distribution. It divides the data into bins or Read More...

Data Visualization with R: stat = count

Web Page

Bioinformatics

geom_bar() uses stat_count() by default: it counts the number of cases at each x position. --- ggplot2 documentation stat_count() requires mapping for either an x OR a y variable but not both. Read More...

Data Visualization with R: The stat argument

Web Page

Bioinformatics

Until this point we have been plotting raw data with geom_point() , but now we will be introducing geoms that transform and plot new values from your data. Many graphs, like scatterplots, plot the raw Read More...

Data Visualization with R: Add custom axes labels

Web Page

Bioinformatics

#Plot ggplot(pcaData) + aes(PC1, PC2, color = Species, shape = Species) + geom_point(size = 2) + coord_fixed() + xlab("PC1: 73%")+ #x axis label text ylab("PC2: 23%") # y axis label text Automating % Variance in axis Read More...

Data Visualization with R: Modifying legends

Web Page

Bioinformatics

We can modify many aspects of the figure legend using the function guide() . Let's see how that works and go ahead and customize some theme arguments. Notice that the legend position is specified in Read More...

Data Visualization with R: The stat argument

Web Page

Bioinformatics

Until this point we have been plotting raw data with geom_point() , but now we will be introducing geoms that transform and plot new values from your data. Many graphs, like scatterplots, plot the raw Read More...

Data Visualization with R: What is a heatmap?

Web Page

Bioinformatics

A heatmap is a graphical representation of data where the individual values contained in a matrix are represented as colors. --- R Graph Gallery Heatmaps are appropriate when we have lots of data because color Read More...

Data Visualization with R: What is a heatmap?

Web Page

Bioinformatics

A heatmap is a graphical representation of data where the individual values contained in a matrix are represented as colors. --- R Graph Gallery Heatmaps are appropriate when we have lots of data because color Read More...

Data Visualization with R: What is a heatmap?

Web Page

Bioinformatics

A heatmap is a graphical representation of data where the individual values contained in a matrix are represented as colors. --- R Graph Gallery Heatmaps are appropriate when we have lots of data because color Read More...

Data Visualization with R: Using factors

Web Page

Bioinformatics

class(a1$dose) ## [1] "numeric" As it turns out, dose is really an experimental factor, so if we specify factor(dose) it will be interpreted as a categorical or discrete. Before fixing the x Read More...

NCI CCR Clinical Research Correlatives Core
Bethesda, MD

Collaborative

The NCI Clinical Research Correlatives Core provides non-CLIA-certified spectral flow cytometric assays to support clinical trials conducted in the CCR. The core specializes in immunophenotyping and immune monitoring assays. Established Technologies Spectral flow cytometry (Cytek), Read More...

Newsletter Archive

Web Page

/*color variables main= #1E1E1E secondery= #333333 highlight= #073254 */ * { box-sizing: border-box; } body, html { font-family: "Open Sans", sans-serif; } .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } h1, h2, h3, h4, h5, h6 { font-weight: 300; } body Read More...

CREx Newsletter Archive

Web Page

:root { --primary-action: rgb(0, 0, 0) !important; --primary-action: rgb(0, 0, 0) !important; } .container { width: 1440px; max-width: 100%; } #h2 { font-size: 2.2rem; margin-left: 20px; } /* Lazy Load Styles */ .card-image { display: block; min-height: 20rem; /* layout hack */ background: #fff center center no-repeat; background-size: cover; filter: blur(3 Read More...

CCR Building 41 Flow Cytometry Core
Bethesda, MD

Core Facility

The CCR Building 41 Flow Cytometry Core is a full-service facility within the Center for Cancer Research that supports over 150 users representing 26 laboratories. The Core Facility provides instrument and software training, technical expertise, assay development, and Read More...

NIA Nonhuman Primate Core
Poolesville, MD

Core Facility

Trans NIH Facility

The NIA Nonhuman Primate (NHP) Core Facility maintains a colony of rhesus macaques at the National Institutes of Health Animal Center. Established in 2012, the Core's mission is to offer research services supporting multi-disciplinary translational aging Read More...

Visualization Tools for Genomic Data

Web Page

Bioinformatics

07/01/2025 - Learn how to vi ualize equencing and analy i re ult effectively. Thi e ion de cribe the application of the web-ba ed interactive OmicCirco in R hiny to con truct circular plot with Read More...

Managing Data in Excel

Web Page

Bioinformatics

10/09/2024 - This one-hour online training will provide detailed information and demonstrations on how to manage data in Excel.    By the end of this training, attendees will be able to:   Filter data by text, numbers, and Read More...

NGS Visualization Tool

Web Page

Bioinformatics

09/27/2024 - This session describes the application of the web-based interactive OmicCircos in R Shiny to construct circular plots with desired biological features. Example data from human and mouse genomes will be used to demonstrate over Read More...

Introduction to R: Part 2 – Data Visualization

Web Page

Bioinformatics

09/06/2024 - This course provides an introduction to data visualization using R. Participants will learn data visualization with base R and using the R package ggplot2 to explore various types of data visualizations, including scatter plots, Read More...

Managing Data in Excel

Web Page

Bioinformatics

02/16/2024 - This one-hour training will provide detailed information and demonstrations on how to manage data in Excel. By the end of this course, the participants will recognize how to filter data by text, numbers, and Read More...

R Introductory Series: Nice plot example

Web Page

Bioinformatics

These steps can be used to create a publish worthy figure. For example, let's create a volcano plot of our differential expression results. A volcano plot is a type of scatterplot that shows statistical Read More...

R Introductory Series: Coordinate systems

Web Page

Bioinformatics

ggplot2 uses a default coordinate system (the Cartesian coordinate system). This isn't super important until we want to do something like make a map (See coord_quickmap() ) or create a pie chart (See coord_ Read More...

R Introductory Series: Facets

Web Page

Bioinformatics

A way to add variables to a plot beyond mapping them to an aesthetic is to use facets or subplots. There are two primary functions to add facets, facet_wrap() and facet_grid() . If faceting Read More...

R Introductory Series: Reshaping for plotting

Web Page

Bioinformatics

There are other reasons you may be interested in using pivot_wider or pivot_longer . In my experience, most uses revolve around plotting criteria. For example, you may want to plot two different but related Read More...

R Introductory Series: Reshaping for plotting

Web Page

Bioinformatics

There are other reasons you may be interested in using pivot_wider or pivot_longer . In my experience, most uses revolve around plotting criteria. For example, you may want to plot two different but related Read More...

R Introductory Series: R base graphics

Web Page

Bioinformatics

You do not need to load a package to visually explore data. Rather, you can use base R graphics for plotting (from the graphics package). This plotting is fairly different from ggplot2 , which is based Read More...

Data Wrangling with R: Putting it all together

Web Page

Bioinformatics

Load in the comma separated file "./data/countB.csv" and save to an object named gcounts . {{Sdet}} Solution } gcounts `...1` colnames ( gcounts )[ 1 ] ## 1 Tspan6 703 567 867 71 970 242 ## 2 TNMD 490 482 18 342 935 469 ## 3 DPM1 921 797 622 661 8 500 ## 4 SCYL3 335 216 222 774 979 793 ## 5 FGR 574 574 515 584 941 344 ## 6 CFH 577 792 672 104 192 936 ## 7 FUCA2 798 766 995 27 756 546 ## 8 GCLC 822 874 923 705 667 522 ## 9 NFYA 622 793 918 868 334 64 {{Edet}} Plot the Read More...

Data Wrangling with R: Facets

Web Page

Bioinformatics

A way to add variables to a plot beyond mapping them to an aesthetic is to use facets or subplots. There are two primary functions to add facets, facet_wrap() and facet_grid() . If faceting Read More...

NGS Visualization Tool

Web Page

Bioinformatics

11/17/2023 - This session describes the application of the web-based interactive OmicCircos in R Shiny to construct circular plots with desired biological features. Example data from human and mouse genomes will be used to demonstrate over Read More...

Protein Characterization Laboratory

Web Page

Protein Characterization Laboratory (PCL) offers various technologies to CCR investigators to characterize proteins and metabolites. The laboratory develops and applies state-of-the-art analytical technologies, primarily mass spectrometry, liquid chromatography, and Surface Plasmon Resonance (SPR), to advance Read More...

NCI Synthetic Biologics Core
Frederick, MD

Core Facility

The research conducted within the Synthetic Biologics Core (SBC) Facility has a dual role: Generate chemical biology tools and drug candidates for molecular targets identified by NCI research groups, Develop novel effective methods and tools Read More...

Visium Spatial Gene Expression Technology

Web Page

What is Visium FFPE v2 with CytAssist? Visium FFPE v2 is sequencing-based spatial profiling technology developed by 10x Genomics. This assay can take mouse or human tissue sections on normal glass slides as input and Read More...

Technology Video Library

Web Page

The OSTR offers cutting-edge technology platforms to the CCR scientific community through centralized facilities. The videos accessed through this page are designed to introduce the various scientific methodologies OSTR makes available through the cores on Read More...

NCI Clinical Support Laboratory: Flow Cytometry Section
Frederick, MD

Core Facility

Clinical Support Laboratory – Flow Cytometry Section is a laboratory specializing in providing immunophenotyping support of NCI intramural clinical trials, though assessments may also be performed using cells from Non-human primates and other species. The CSL Read More...

NCI Genomics and Pharmacology Facility
Bethesda, MD

Core Facility

The Genomics and Pharmacology Facility is part of the NCI's Center for Cancer Research (CCR), within the Developmental Therapeutics Branch. Its mission is to manage and assess molecular interaction data obtained through multiple platforms, increase Read More...

NCI Molecular Cytogenetics Core Facility
Frederick, MD

Core Facility

Molecular Cytogenetics Core Facility facilitates the assessment of structural and numerical genomic changes in pre-cancer and cancer research models. This core provides comprehensive support for the cytogenetic analysis of cells from human and research animal Read More...

Xenium Spatial Profiling Technology

Web Page

What is Xenium? Xenium is a high-resolution, imaging-based in situ spatial profiling technology from 10x Genomics that allows for simultaneous expression analysis of RNA targets (currently in range of 100’s) within the same tissue section. Read More...

CCR Optical Microscopy and Analysis Lab (OMAL)
Frederick, MD

Core Facility

OMAL focuses its research and development activities to quantitatively understand the molecular basis of three-dimensional (3D) cell organization, motility, invasion, and differentiation using fixed samples and live, 3D tissue culture models (i.e., translational models). Read More...

Laboratory of Genome Integrity (LGI): Flow Cytometry Core
Bethesda, MD

Core Facility

The Flow Cytometry Core (LGI) offers established technologies to support studies using flow cytometry and cell sorting. Established Technologies Applications that run on FACS Caliburs include: Immunophenotyping (up to 4-color), Intracellular markers, including cytokines and Read More...

NCI Genetics Branch: OMICS Technology Facility
Bethesda, MD

Collaborative

Our operational objectives are to provide state-of-the-art OMICS technologies in support of the Genetics Branch (GB) investigators and collaborators. Research Services Wet Lab Single cell isolation from fresh, frozen, and FFPE tissue, DNA/RNA extractions Read More...

Pan-Microbial Serology Facility (PMSF)
Bethesda, MD

Collaborative

The Pan-Microbial Serology Facility (PMSF) is part of the Center for Cancer Research (CCR) at the National Cancer Institute (NCI). The PMSF focuses on determining individualized pan-microbial immune profiles associated with human diseases including immunological Read More...

Bioinformatics for Beginners 2022: Lesson 14 Practice

Web Page

Bioinformatics

Lesson 14 Practice Objectives Here, we will practice using the Integrative Genome Viewer (IGV) to visualize the hcc1395 RNA sequencing alignment results. About the data and launching IGV We were introduced to the hcc1395 RNA sequencing Read More...