Skip to content

Principal Component Analysis

Get access to track progress Get access to bookmark
Asset Pricingx / 34
Behavioral Questionsx / 7
Brain Teasersx / 77
Derivatives Theoryx / 107
Digital Assets - Cryptox / 82
Energy Tradingx / 55
Linear Algebrax / 24
Machine Learningx / 62
Math Questionsx / 49
Probability and Statisticsx / 203
Programmingx / 54
Totalx / 754
Sorry, you don't have access to this interview question. Sign up to practice with our wide range of interview questions or use the filters to find free examples!
Sign up to see the solution!
Python scratchpad
# Run Python right here in your browser
def two_sum(nums, target):
    seen = {}
    for i, n in enumerate(nums):
        if target - n in seen:
            return [seen[target - n], i]
        seen[n] = i
    return []

print(two_sum([2, 7, 11, 15], 9))  # [0, 1]
Run Python in your browser

Write and execute code — numpy, pandas & scikit-learn included — right on the question page.

Log in to start coding
Title Category Subcategory Difficulty Status
How Many Principal Components? Machine LearningDimensionality ReductionMedium
t-SNE and UMAP: Nonlinear Embeddings Machine LearningDimensionality ReductionMedium

Please log in to see the discussion.