Giter Club home page Giter Club logo

Comments (1)

dustinmichels avatar dustinmichels commented on July 18, 2024

Update: Can draw a similar plot with the following code.

import matplotlib.pyplot as plt
from cosmic_rAI.data_prep import *

mat1 = np.load('../data/sim_12360_00.npy').item()  # protons
mat2 = np.load('../data/sim_12362_00.npy').item()  # iron
matrices = [mat1, mat2]

event_df = event_df_from_matrices(matrices)
sensor_df = sensor_df_from_matrices(matrices)

# merge sensor data wth (transposed) charge data
vals = sensor_df.merge(
    event_df['charges'].T,
    how='outer', left_index=True, right_index=True)

# seperate high/ low gain
high_vals = vals[vals['gain']=='High'].drop('gain', axis=1)
low_vals = vals[vals['gain']=='Low'].drop('gain', axis=1)

# choose an event
event = 11

# x,y should be same in high_vals and low_vals
x, y = high_vals['pos_x'], high_vals['pos_y']

# construct plot
fig, ax = plt.subplots()
ax.scatter(x, y, s=high_vals[event], c='r', label='high_gain')
ax.scatter(x, y, s=low_vals[event], c='b', label='high_gain')
ax.set_title('Event #{}'.format(event))
ax.legend()

Output this:

screen shot 2018-03-11 at 7 22 38 pm

from cosmic-rai.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.