Skip to content

Commit c660c6b

Browse files
scottyhqJessicaS11
andauthored
Apply suggestions from code review
Co-authored-by: Jessica Scheick <[email protected]>
1 parent df11caa commit c660c6b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fundamentals/01_data_structures.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ However, real-world datasets are usually more than just raw numbers; they have
99
labels which encode information about how the array values map to locations in
1010
space, time, etc.
1111

12-
The N-dimensional nature of xarray’s data structures makes it suitable for
12+
The N-dimensional nature of Xarray’s data structures makes it suitable for
1313
dealing with multi-dimensional scientific data, and its use of dimension names
1414
instead of axis labels (`dim='time'` instead of `axis=0`) makes such arrays much
15-
more manageable than the raw numpy ndarray: with xarray, you don’t need to keep
15+
more manageable than the raw NumPy ndarray: with Xarray, you don’t need to keep
1616
track of the order of an array’s dimensions or insert dummy dimensions of size 1
1717
to align arrays (e.g., using np.newaxis).
1818

19-
The immediate payoff of using xarray is that you’ll write less code. The
19+
The immediate payoff of using Xarray is that you’ll write less code. The
2020
long-term payoff is that you’ll understand what you were thinking when you come
2121
back to look at it weeks or months later.
2222

0 commit comments

Comments
 (0)