NATIONAL CANCER INSTITUTE - CANCER.GOV

Search Results for: fine needle aspirates

Total Results Found: 39

CCR Spatial Imaging Technology Resource (SpITR)
Bethesda, MD

Collaborative

The Spatial Imaging Technology Resource (formerly the Nanoscale Protein Analysis Section of the Collaborative Protein Technology Resource or CPTR) provides expertise and service in state-of-the-art protein analysis technologies to advance CCR research in basic discovery Read More...

R Introductory Series: Objectives

Web Page

Bioinformatics

Review the grammar of graphics template. Learn about the statistical transformations inherent to geoms. Learn more about fine tuning figures with labels, legends, scales, and themes. Learn how to save plots with ggsave() . Review general Read More...

Data Wrangling with R: Things to note

Web Page

Bioinformatics

R doesn't care about spaces in your code. However, it can vastly improve readability if you include them. For example, "thisissohardtoread" but "this is fine". You can use tab completion Read More...

R Introductory Series 2023: Objectives

Web Page

Bioinformatics

Review the grammar of graphics template. Learn about the statistical transformations inherent to geoms. Learn more about fine tuning figures with labels, legends, scales, and themes. Learn how to save plots with ggsave() . Review general Read More...

BTEP Coding Club: GitHub authentication

Web Page

Bioinformatics

There are many authentication options for GitHub and users will select the one that is most appropriate for the project. See https://docs.github.com/en/authentication for details. One of the methods is to Read More...

Data Wrangling with R: Naming conventions and reproducibility

Web Page

Bioinformatics

There are rules regarding the naming of objects. Avoid spaces or special characters EXCEPT '_' and '.' No numbers or symbols at the beginning of an object name. For example: 1a:1:2: unexpected symbol ## 1: 1a ## ^ In contrast: a

Getting to know R

Web Page

Bioinformatics

11/18/2021 - In this class, we will explore the basics of R. Topics covered will include: Overview of R Studio IDE Checking R version and switching between different versions of R Working with directories Setting working Read More...

BTEP Coding Club: Question 9:

Web Page

Bioinformatics

What is the difference between saving and committing. Saving just involves saving your work. For instance, suppose you are working on a Word document. You might save it at the end of the day on Read More...

BTEP Coding Club: Learning Objectives

Web Page

Bioinformatics

In this coding club, we will Discuss commonly observed errors. How to approach and debug R code. How to find help. Debugging is the process of identifying and fixing errors or potential errors in your Read More...

BTEP Coding Club: Learning Objectives

Web Page

Bioinformatics

In this coding club, we will Discuss commonly observed errors. How to approach and debug R code. How to find help. Debugging is the process of identifying and fixing errors or potential errors in your Read More...

Data Wrangling with R: Practice problems

Web Page

Bioinformatics

Which of the following will throw an error and why? 4 _ chr :1:2: unexpected input ## 1: 4_ ## ^ . 4 chr :1:3: unexpected symbol ## 1: .4chr ## ^ {{Edet}} Create the following objects; give each object an appropriate name (your best guess at what name to Read More...

Data Wrangling with R: Lesson 2: Help Session

Web Page

Bioinformatics

This is our first coding help session. We have designed some practice problems to get you acquainted with using R before beginning to wrangle in our next lesson. Practice problems Which of the following will Read More...

NIH Intramural CryoEM Consortium (NICE)
Bethesda, MD

Trans NIH Facility

NIH Intramural CryoEM Consortium (NICE) serves intramural investigators in all NIH IC’s. NICE provides access to state-of-the-art Titan Krios cryo-electron microscopes for atomic-resolution structure determination of protein, macromolecular complexes, membrane receptors, cellular organelles, and Read More...

NICE-NIH Intramural CryoEM Consortium

Web Page

[tabby title="Home"] About NICE-NIH Intramural CryoEM Consortium  NIH Intramural CryoEM Consortium (NICE) serves intramural investigators in all NIH IC’s. NICE provides access to state-of-the-art Titan Krios cryo-electron microscopes for atomic-resolution structure determination of Read More...

R Introductory Series: Basics of R Programming

Web Page

Bioinformatics

Objectives To understand some of the most basic features of the R language including: Creating R objects and understanding object types Using mathematical operations Using comparison operators Creating, subsetting, and modifying vectors By the end Read More...

R Introductory Series 2023: ggplot2 Continued

Web Page

Bioinformatics

Objectives Review the grammar of graphics template. Learn about the statistical transformations inherent to geoms. Learn more about fine tuning figures with labels, legends, scales, and themes. Learn how to save plots with ggsave() . Review Read More...

R Introductory Series 2023: R Basics

Web Page

Bioinformatics

R basics Objectives : To understand some of the most basic features of the R language including: Creating R objects and understanding object types Using mathematical operations Using comparison operators Creating, subsetting, and modifying vectors By Read More...

BTEP Coding Club: Scaling data by z score

Web Page

Bioinformatics

An important step in generating a heatmap is to scale the data by z-score (see equation below). Given a vector of numbers, the z-score informs how many standard deviations is each number in the vector Read More...