We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Read in multiple obs_seq files into one obs_seq instance.
import obs_sequence as dart_os obs_seq = dart_os.obs_sequence('obs_seq.final.ascii', 'obs_seq.final.ascii2', 'obs_seq.final.ascii3', ...) obs_seq.df
The text was updated successfully, but these errors were encountered:
or, keep each file as an instance.
files = ['file1.ascii', 'file2.ascii', 'file3.ascii'] obs_sequences = [obs_sequence(file) for file in files]
then join the dataframes #7
Sorry, something went wrong.
No branches or pull requests
Read in multiple obs_seq files into one obs_seq instance.
The text was updated successfully, but these errors were encountered: