Generate code in manim for creating a cartesian plane
def cartesian_plane(self): axes_config = { "x_min" : -1, "x_max" : 7, "y_min" : -1, "y_max" : 5, "axes_color" : GREY, "center_point" : ORIGIN, "x_axis_config" : {}, "y_axis_config" : {}, "number_line_config" : { "include_tip" : False, } } x_axis = NumberLine(**axes_config) y_axis = NumberLine(**axes_config).rotate(np.pi/2) axes = VGroup(x_axis, y_axis) axes.add(axes.get_axis_labels()) axes.add_coordinates([-1, 1, 2, 3, 4, 5, 6, 7], [-1, 1, 2, 3, 4, 5]) return axes