aamster

Results 87 comments of aamster

Yes, I would benefit from an improvement to the docs for this argument or a warning. What threw me off was > Setting to True will use default markers so,...

I was able to do it by setting the tick labels to be different length empty strings and then rotating ticklabels 0 degrees.

@etpinard I essentially wanted a single category label to span multiple ticks, since there are too many individual tick labels to display. I can then hover over each individual bar...

@etpinard that's interesting but you still have to set empty string to all but one of `ticktext` and then set the middle `ticktext` to the category value. It's still better...

It doesn't appear that `BrainObservatoryNwbDataSet` exposes event detection. Can you please link to the documentation where you are reading that it has a method `get_all_events` ?

@mabuice , @alih100011 is trying to extract events for an experiment in the visual coding ophys dataset, but it doesn't look like we expose event detection for this dataset. What...

Please pass a higher number for n_workers to get_ophys_experiment_table. os.cpu_count() uses all available cores. Then it loads in reasonable time.

I see. We didn't really consider the use case of interactively pulling this table, especially not passing `passed_only=False`. It was more intended for generating the project metadata table of released...

@matchings I forgot that for behavior sessions without ophys data, the LIMS database doesn't store session type, which is why we had to get this value from mtrain, which is...

Here you go: ``` from typing import Optional, List import pandas as pd from allensdk.brain_observatory.behavior.behavior_project_cache.project_apis\ .data_io import \ BehaviorProjectLimsApi from allensdk.brain_observatory.behavior.behavior_project_cache.tables\ .experiments_table import \ ExperimentsTable from allensdk.brain_observatory.behavior.behavior_project_cache.tables\ .sessions_table import \...