Reference
This file documents the key functions in the Spacewalks tool. It is provided as a reference manual.
add_crew_size_column(df)
Add crew_size column to the dataset containing the value of the crew size
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df |
DataFrame
|
The input data frame. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
df_copy |
DataFrame
|
A copy of df with the new crew_size variable added |
Source code in eva_data_analysis.py
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | |
add_duration_hours_variable(df)
Add duration in hours (duration_hours) variable to the dataset
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df |
DataFrame
|
The input dataframe. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
df_copy |
DataFrame
|
A copy of df_ with the new duration_hours variable added |
Source code in eva_data_analysis.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | |
calculate_crew_size(crew)
Calculate the size of the crew for a single crew entry
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
crew |
str
|
The text entry in the crew column containing a list of crew member names |
required |
Returns:
| Type | Description |
|---|---|
int
|
The crew size |
Source code in eva_data_analysis.py
112 113 114 115 116 117 118 119 120 121 122 123 124 125 | |
plot_cumulative_time_in_space(df, graph_file)
Plot the cumulative time spent in space over years
Convert the duration column from strings to number of hours Calculate cumulative sum of durations Generate a plot of cumulative time spent in space over years and save it to the specified location
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df |
DataFrame
|
The input dataframe. |
required |
graph_file |
str
|
The path to the output graph file. |
required |
Returns:
| Type | Description |
|---|---|
None
|
|
Source code in eva_data_analysis.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | |
read_json_to_dataframe(input_file)
Read the data from a JSON file into a Pandas dataframe. Clean the data by removing any incomplete rows and sort by date
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_file |
str
|
The path to the JSON file. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
eva_df |
DataFrame
|
The cleaned and sorted data as a dataframe structure |
Source code in eva_data_analysis.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | |
text_to_duration(duration)
Convert a text format duration "HH:MM" to duration in hours
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
duration |
str
|
The text format duration |
required |
Returns:
| Name | Type | Description |
|---|---|---|
duration_hours |
float
|
The duration in hours |
Source code in eva_data_analysis.py
54 55 56 57 58 59 60 61 62 63 64 65 66 | |
write_dataframe_to_csv(df, output_file)
Write the dataframe to a CSV file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df |
DataFrame
|
The input dataframe. |
required |
output_file |
str
|
The path to the output CSV file. |
required |
Returns:
| Type | Description |
|---|---|
None
|
|
Source code in eva_data_analysis.py
40 41 42 43 44 45 46 47 48 49 50 51 52 | |